body{
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: hsl(217, 54%, 11%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.attribution {
    margin-top: 10px;
    font-size: 11px; text-align: center;
    color: aliceblue;
}
.attribution a {
    color: hsl(228, 45%, 44%);
}
.card {
    background-color: hsl(216, 50%, 16%);
    width: 270px;
    height: 500px;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.5);
}
.equilibrium {
    position: relative;
}
.equilibrium img {
    width: 100%;
    display: block;
    border-radius: 10px;
}  
.eye {
    position: absolute;
    align-items: center;
    display: flex;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background-color: hsla(178, 100%, 50%, 0.4);
    justify-content: center;
    opacity: 0;
    border-radius: 10px;
}
.eye img {
    width: 40px;
    height: 40px;
}
.text {
    margin-top: 20px;
    margin-bottom: 5px;
}
.text h1 {
    color: hsl(0, 0%, 100%);
    font-size: 20px;
}
.text p {
    color: hsl(215, 51%, 70%);
    font-size: 15px;
}
.price {
    text-align: justify;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ethereum {
    color: hsl(178, 100%, 50%);
    display: flex;
    align-items: center;
    gap: 5px;
}
.days_left {
    display: flex;
    align-items: center;
    gap: 5px;
    color: hsl(215, 51%, 70%);
    font-size: 14px;
}
.line {
    border: none;
    border-top: 1px solid hsl(215, 51%, 70%, 0.3);
}
.creation {
    margin: 10px auto;
    display: flex;
    align-items: center;
    gap: 10px;
}
.avatar img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    
}
.description {
    font-size: 14px;
}
.description p {
    color: hsl(215, 51%, 70%);
}
.description span {
    color: hsl(0, 0%, 100%);
}
.text h1:hover {
    cursor: pointer;
    color: hsl(178, 100%, 50%);
}
.description span:hover {
    cursor: pointer;
    color: hsl(178, 100%, 50%);
}
.equilibrium:hover .eye {
    cursor: pointer;
    opacity: 1;
}

