:root{
    --soft-blue: hsl(215, 51%, 70%);
    --cyan:hsl(178, 100%, 50%);
    --main-bg:hsl(217, 54%, 11%);
    --card-bg:hsl(216, 50%, 16%);
    --line-color: hsl(215, 32%, 27%);
    --white-color:hsl(0, 0%, 100%);
    --typograpg-size:1.15rem;
    --font-famliy:'Outfit', sans-serif;
}

body{
    box-sizing: border-box;
    margin: 0;
}

.nft-preview{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--main-bg);
}
.container{
    background-color: var(--card-bg);
    height: 530px;
    width: calc(900px - 600px);
    border-radius: 12px;
    box-shadow: 3px 3px 87px 5px #111;
    display: flex;
    flex-direction: column;
    padding: 15px;
    color: var(--white-color);
    
    font-family: var(--font-famliy);

}
.container .image-container{

    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    
}
.container .image-container img{
    max-width: 100%;
}
.container h3{
    margin-top: 10px;
    margin-bottom: 0;
    font-weight: 400;
}
.container p{
    margin-top: 10px;
    margin-bottom: 0;
    font-size: var(--typograpg-size);
    font-weight: 300;
    color: var(--soft-blue);
}
.container .icons{
    margin-top: 10px;
    margin-bottom: 0;
    font-weight: 300;
    color: var(--soft-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line-color);
}
.container .icons .heading-element h4{
    color: var(--cyan);
    font-weight: 400;
    position: relative;
}
.container .icons .heading-element h4 span{
    margin-right: 8px;
}

.container .icons .time-element {
    flex-basis: 150px;
    display: flex;
    justify-content:flex-end;
    
}
.container .icons .time-element i,
.container .icons .time-element span{
    display: block;
}
.container .icons .time-element span{
    margin-left: 3px;
}

.container .last-section{
    padding-top: 10px;
    width: 100%;
    display: flex;
    justify-content:start;
    
}
.container .last-section .image-container{
    width: 40px;
    height: 40px;
    margin: 0;
    border-radius: 50%;
    border : 1.5px solid var(--line-color)
}
.container .last-section .image-container img{
    max-width: 100%;
}
.container .last-section p{
    margin-left: 7px;
}
.container .last-section .light-text{
    color: white;
}
