body {
    background-color: var(--background-main-color);
    font-family: 'Outfit', sans-serif;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 700px;
    padding: 0 25px;
}

.nft-card {
    width: 350px;
    background-color: var(--background-card-color);

    border-radius: 15px;
    padding: 25px;
}

.nft-card .image-link {
    position: relative;
    display: flex;
}

.nft-card .image-link .image-card {
    width: 100%;
    border-radius: 7px;
}

.nft-card .image-link::before {
    content: "";
    background-color: aqua;
    border-radius: 9px;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.nft-card .image-link::after {
    content: "";
    background: url(../images/icon-view.svg) no-repeat center;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.nft-card .image-link:hover::before {
    opacity: 0.4;
}

.nft-card .image-link:hover::after {
    opacity: 1;
}

.title-link .title{
    color: #ffffff;
    font-size: 22px;
    margin: 20px 0 20px;
}

.title-link .title:hover {
    color: var(--primary-medium-color);

}

.about {
    color: var(--primary-soft-color);
    font-size: 18px;
    font-weight: 300;
    line-height: 20px;
}

.informations {
    display: flex;
    justify-content: space-between;
    margin: 20px 0 20px;
}

.informations .price {
    color: var(--primary-medium-color);
    display: flex;
}

.informations .price::before {
    content: "";
    background-image: url(../images/icon-ethereum.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 11px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
}

.informations .days-left {
    color: var(--primary-soft-color);
    display: flex;
}

.informations .days-left::before {
    content: "";
    background: url(../images/icon-clock.svg) no-repeat center;
    width: 14px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
}

.creator {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--neutral-color);
    padding-top: 15px;
}

.creator .creator-avatar {
    max-width: 35px;
    border: 1px solid white;
    border-radius: 50%;
    margin-right: 15px;
}

.creator .create-text {
    color: var(--primary-soft-color);
}

.creator .create-text .name {
    color: #ffffff;
}

.creator .create-text .name:hover {
    color: var(--primary-medium-color);
}