@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
*{
    padding: 0;
    margin: 0;
    font-family: "Outfit", sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: hsl(217, 54%, 11%);
}
.card{
    border-radius: 5%;
    width: 500px;
    height: 800px;
    background-color: hsl(215, 32%, 27%);
    box-shadow:  hsl(216, 50%, 16%)  0px 0px 10px 0px;
    
}
.icon-ethereum{
    
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    
}
.icon-ethereum img{
    width: 450px;
    height: 450px;
    border-radius: 4%;
}

.nft{
    margin-left: 25px;
    margin-top: 25px;
    font-size: 15px;
    color: white;
}

.text{
    display: flex;
    margin-left: 25px;
    margin-top: 10px;
    font-size: 25px;
}
.description{
    display: flex;
    justify-content: space-between;
    margin-right: 30px;
    margin-left: 25px;
    margin-top: 15px;
    font-size: larger;
}
.linha {
    align-items: center;
    border: 1px solid #000;
    margin: 10px 25px;
    margin-top: 25px;
}

.creator{
    display: flex;
    margin-right: 30px;
    margin-left: 25px;
    margin-top: 25px;
    font-size: larger;
    align-items: center;
}
.creator img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid white;
    margin-right: 10px;
}
.name{
    color: white;
}

@media screen and (max-width: 768px) {
    .card{
        width: 90%;
        height: 90%;
    }
    .icon-ethereum img{
        width: 85%;
        height: auto;
    }
    .nft{
        font-size: 12px;
    }
    .text{
        font-size: 20px;
    }
    .description{
        font-size: medium;
    }
    .creator{
        font-size: medium;
    }
    .creator img{
        width: 40px;
        height: 40px;
    }

    
}
  