:root {
    /*Primary*/
    --color-blue: hsl(215, 51%, 70%);
    --color-cyan: hsl(178, 100%, 50%);
    /*Neutral*/
    --color-blue-bg: hsl(217, 54%, 11%);
    --color-blue-card: hsl(216, 50%, 16%);
    --color-blue-line: hsl(215, 32%, 27%);
    --color-white: hsl(0, 0%, 100%);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-family: "Outfit", sans-serif;
    font-size: 100%;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--color-blue-bg);
    color: var(--color-blue);
    font-weight: 300;
}

.container{
    width: 20.65rem;
    background-color: var(--color-blue-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border-radius: 8px;
}

.imgNFT {
    width: 17.5rem;
    height: 17.5rem;
    border-radius: 8px;
}

.imgNFT-wrapper {
    position: relative;
    width: 17.5rem;
    height: 17.5rem;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.imgNFT-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsla(178, 100%, 50%, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.imgNFT-wrapper:hover .imgNFT-overlay {
    opacity: 1;
}

.imgNFT-eye {
    width: 48px;
    height: 48px;
    opacity: 1;
}

h1 {
    width: 100%;
    font-size: 1.4rem;
    text-align: left;
    color: var(--color-white);
    font-weight: 600;
}

.linkName:hover {
    color: var(--color-cyan);
    cursor: pointer;
}

.dates {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.price{
    display: flex;
    font-weight: 600;
    color: var(--color-cyan);
}

.time {
    display: flex;
}

.dates img{
    margin-right: 0.3rem;
}

hr {
    width: 100%;
    border-color: var(--color-blue);
}

.author{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.imageAuthor {
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid;
    border-radius: 50%;
    border-color: var(--color-white);
}

.author p{
    margin-left: 1rem;
}

.nameAuthor {
    color: var(--color-white);
}

.nameAuthor:hover {
    color: var(--color-cyan);
    cursor: pointer;
}

