body {
    background-color: hsl(217, 54%, 11%);
    box-sizing: border-box;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    margin:  0;
    padding:  0;
    overflow: hidden;
    text-align: center;
}  
a {
    text-decoration: none;
}
h1{
    color: hsl(0, 0%, 100%);
    font-size: 18px;
    text-align: left;
    margin: 0 auto;
    margin-top: 20px;
}
h1:hover {
    color: hsl(178, 100%, 50%);
    cursor: pointer;
}



.card {
    background-color: hsl(216, 50%, 16%);
    border-radius: 10px;
    width: 18%;
    height:410px;
    text-align: center;
    padding:20px 20px 0;
}

.container {
    height: 45%;
    width: 100%;
    position: relative;
    
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: 0.5s ease;
    background-color: hsl(178, 100%, 50%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.container:hover .overlay{
    opacity: 1;
    cursor: pointer;
}

.view {
    max-height: 48px;
    max-width: 48px;
}

.main-img {
    height: 100%;
    width: 100%;
    border-radius: 5px;
}


.description {
    text-align: left;
    font-size: 14px;
    margin-bottom: 25px;
    color:  hsl(215, 51%, 70%);
}

.container-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
 .icons {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 6px;
 }

 .eth-txt {
    color: hsl(178, 100%, 50%);
    font-size: 12px;
 }
.time-txt {
    color: hsl(215, 51%, 70%);
    font-size: 12px;
}
 hr {
    border-bottom: none;
    border-top: 0.1px solid #8bacda;;
    margin: 15px 0;
 }

 .creation {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    text-align: left;
    margin-bottom: 20px;

 }
 .creation p span {
    color: hsl(215, 52%, 70%);
 }

 .avatar {
    width: 10%;
    height: auto;
 }

.jules:hover {
    color: hsl(178, 100%, 50%);
    cursor: pointer;
}

.attribution {
    font-size: 11px; 
    text-align: center; 
    margin-top: 10px;
}
.attribution a {
    color: hsl(228, 45%, 44%); 
}

@media screen and (max-width: 1100px) {
   .card {
       width: 25%;
   }
}

@media screen and (max-width:800px) {
    .card {
        width: 50%;
    }
 }