@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
* {box-sizing: border-box; padding: 0; margin: 0;}
:root {
    --clr-blue-950: #0D192C;
    --clr-blue-900: #15263F;
    --clr-blue-800: #2E405A;
    --clr-blue-500: #8BACD9;
    --clr-blue-400: #00FFF8;
    --clr-white: #FFF;
    --clr-black: #000;
}



body {
    font-family: "Outfit", sans-serif;
    width: 100%;
    height: 100vh;
}

.main {
    width: 100%;
    height: 100%;
    align-content: center;
    background-color: var(--clr-blue-950);
}

img {
    display: inline-block;
}

.nft {
    margin-inline: auto;
    padding: 24px;
    background-color: var(--clr-blue-900);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 90%;
    max-width: 350px;
}

.nft__picture {
    width: 100%;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
}

.nft__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.nft__title {
    color: var(--clr-white);
    font-weight: 600;
    font-size: 22px;
    line-height: auto;
    line-height: 1.5;
    margin-bottom: -8px;
}

.nft__text {
    color: var(--clr-blue-500);
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
}

.nft__text--regular {
    font-weight: 400;
}

.nft-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nft-content__ethereum {
    display: flex;
    gap: 8px;
}

.img-ethereum {
    width: 11px;
    height: 18px;
}

.amount {
    color: var(--clr-blue-400);
    font-weight: bold;
    font-size: 16px;
    line-height: auto;
}

.nft-content__time {
    display: flex;
    gap: 8px;
    align-items: center;
}

.img-time {
    width: 16px;
    height: 16px;
}

.line {
    height: 1px;
    width: 100%;
    background-color: var(--clr-blue-800);
}

.nft-content__creation {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar {
    width: 33px; height: 33px;
    outline: 1px solid var(--clr-white);
    border-radius: 50%;
    object-fit: cover;
}

.nft__name {
    color: var(--clr-white);

}