body{
    background-color: var(--neutral-dark);
    font-family: 'Outfit', sans-serif;
}

main{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.nft-card{
    max-width: 350px;
    background-color: var(--neutral-medium);
    border-radius: 15px;
    padding: 25px;
}

.nft-card .image-link{
    position: relative;
    display: flex;
}

.nft-card .image-link .image{
    width: 100%;
    border-radius: 7%;
}

.nft-card .image-link::before{
    content: '';
    background-color: var(--primary-medium);
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.4;
    display: none;
    border-radius: 7%;
}

.nft-card .image-link::after{
    content: '';
    background: url(../images/icon-view.svg);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
}

.nft-card .image-link:hover::before,.nft-card .image-link:hover::after{
    display: block;
}

.nft-card .title-link .title{
    font-size: 22px;
    color: #ffffff;
    margin: 25px 0 12px;    
}

.nft-card .title-link .title:hover{
    color: var(--primary-medium);
}

.nft-card .about{
    font-size: 18px;
    color: var(--primary-soft);
    font-weight: 300;
    line-height: 27px;
    margin-bottom: 23px;
}

.nft-card .info{
    display: flex;
    justify-content: space-between;
    margin-bottom: 23px;
}

.nft-card .info .price{
    color: var(--primary-medium);
    font-weight: 400;
    display: flex;
}

.nft-card .info .price::before{
    content: '';
    background-image: url(../images/icon-ethereum.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 11px;
    height: 16px;
    display: inline-block;
    margin-right: 5px;
}

.nft-card .info .days-left{
    color: var(--primary-soft);
    font-weight: 400;
    display: flex;
}

.nft-card .info .days-left::before{
    content: '';
    background-image: url(../images/icon-clock.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 15px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
}

.nft-card .creator{
    display: flex;
    align-items: center;
    border-top: 1px solid var( --neutral-soft);
    padding-top: 15px;
}

.nft-card .creator .avatar{
    max-width: 35px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    margin-right: 15px;
}

.nft-card .creator .text{
    color: var(--primary-soft);
    font-weight: 400;
}

.nft-card .creator .text .name{
    color: #ffffff;
    font-weight: 300;
}

.nft-card .creator .text .name:hover{
    color: var(--primary-medium);
}

