body{
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 300;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: hsl(217, 54%, 11%);
}


.container{
    background-color: hsl(216, 50%, 16%);
    width: 300px;
    padding: 20px;
    border-radius: 15px;
}

.image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.image-container .image-equilibrium {
  width: 100%;
  display: block;
  border-radius: 15px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsl(178, 100%, 50%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 15px;
}

.image-container:hover .overlay {
  opacity: 0.5;
} 

.overlay .eye-icon {
    width: 50px;
}

.content h3{
    color: hsl(0, 0%, 100%);
}

.content h3:hover{
    color: hsl(178, 100%, 50%);
}
.content p:nth-of-type(1){
    color: hsl(215, 51%, 70%);
}

.details  span:nth-of-type(1){
    color: hsl(178, 100%, 50%);
    font-size: 14px;
}

.details  span:nth-of-type(2){
    color: hsl(215, 51%, 70%);
    font-size: 14px;
}

.details img{
    position: relative;
    top: 3px;
}

.image-avatar{
    width: 40px;
}

.content p:nth-of-type(2){
    display: flex;
    align-items: center;
    color: hsl(0, 0%, 100%);
}

.content p:nth-of-type(2):hover{
    color: hsl(178, 100%, 50%);
}

.content strong{
    color: hsl(215, 51%, 70%);
}


.attribution { 
    font-size: 11px; text-align: center; 
}

.attribution a { 
    color: hsl(228, 45%, 44%); 
}

@media screen and (max-width: 400px) {
    .container{
        width: 80%;
    } 
}

