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

body {
    font-family: "Outfit", sans-serif;
    background-color: hsl(217, 54%, 11%);
    color: hsl(0, 0%, 100%);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.nft-card {
    background-color: hsl(216, 50%, 16%);
    width: 390px;
    height: 660px;
    border-radius: 20px;
    padding: 25px;
    margin-top: 10%;
    color: hsl(215, 51%, 70%);
}

.nft-card .image-link {
    position: relative;
    display: flex;
}
.nft-card .image-link .imag {
    width: 100%;
    border-radius: 7px;
}
.nft-card .image-link::before {
    display: none;
    content: '';
    background-color: hsl(178, 100%, 50%);
    border-radius: 7px;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.4;
}

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

.nft-card .image-link:hover::before,
.nft-card .image-link:hover::after {
    display: block;
}
.nft-card .nft-informacoes {
    margin-top: 27px;
    
}
.nft-card .nft-informacoes a:hover {
    color: hsl(178, 100%, 50%);
}

.nft-card .nft-informacoes > p {
    margin-top: 24px;
    font-size: 19px;
    font-weight: 300;
}

.nft-card .nft-data {
    margin-top: 34px;
    display: flex;
    justify-content: space-between;
}

.nft-card .nft-data > p {
    display: flex;
    gap: 8px;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 25px;
}

.nft-card .nft-data {
    border-bottom: solid 1px hsl(215, 51%, 70%, 20%);
}
.nft-card .eth {
    color: hsl(178, 100%, 50%);
}

.nft-card .informacoes-autor {
    display: flex;
    align-items: center;
    display: flex;
    gap: 20px;
    margin-top: 19px;
}

.nft-card .informacoes-autor img {
    width: 35px;
    border: solid 1px hsl(0, 0%, 100%);
    border-radius: 50%;
}
.nft-card .informacoes-autor .nome-autor:hover {
    color: hsl(178, 100%, 50%);
}
a {
    color: hsl(0, 0%, 100%);
}
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }