@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');



body {
    background-color: #0d1a2d;
    font-family: "Outfit", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

.card {
    height: fit-content;
    background-color: #15273f;
    box-shadow: 0px 0px 15px 10px #0c1729;
    border-radius: 20px;
    margin-bottom: 50px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: left;
    max-width: 300px;
}

.nftImage {
    display: flex;
    align-items: center;
    justify-content: center;

}

.nftImage:hover {
    .image {
        filter: contrast(2);
        cursor: pointer;
    }

    .view {
        visibility: visible;
    }
}


.image {
    border-radius: 20px;
    width: 300px;
    transition: 0.2s;
    height: 300px;
}


.view {
    position: absolute;
    visibility: hidden;
}



@media screen and (max-width: 420px) {
    .image {
        width: 200px;
    }

}

.nftName {
    color: white;
    font-size: 25px;
    transition: 0.2s;
    padding: 0;
}

.nftName:hover {
    color: #33f0e9;
    cursor: pointer;
}

.nftDescription {
    color: white;
    max-width: 300px;
    padding: 0;
    margin: 0;
}


.info {
    display: flex;
    justify-content: space-between;
}

.value {
    background-image: url('./images/icon-ethereum.svg');
    background-repeat: no-repeat;
    background-position: center left;
    color: #29f0f3;
    padding-left: 15px;
}

.date {
    color: #8fa7c1;
    padding-left: 20px;
    background-image: url('./images/icon-clock.svg');
    background-repeat: no-repeat;
    background-position: center left;
}

.creatorInfo {
    border-top: 1px solid #8fa7c1;
    padding: 20px 0px 0px 0px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 10px;
}

.avatar {
    width: 50px;
    border: 1px solid white;
    border-radius: 100%;
}

.creator {
    color: #8fa7c1;
}

.creatorName {
    color: white;
    transition: 0.2s;
}

.creatorName:hover {
    color: #33f0e9;
    cursor: pointer;
}



.attribution {
    color: white;
}


