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


* {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
}
a {
  text-decoration: none;
}
body {
  background-color: hsl(217, 54%, 11%);
  min-height: 100vh;
  display: grid;
  place-content: center;
}
.main {
  background-color: hsl(216, 50%, 16%);
  height: fit-content;
  width: 270px;
  margin: 20px auto;
  margin-bottom: 5px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 2px 2px 13px rgba(0, 0, 0, 0.411);
}
.main-image {
  height: 270px;
  background-color: lightblue;
  border-radius: 5px;
  background-image: url('images/image-equilibrium.jpg');
  background-size: cover;
}
.main-image-blue{
  background-color: hsl(178, 100%, 50%);
  height: 270px;
  border-radius: 5px;
  opacity: 0;
  transition: .5s ease;
  visibility: hidden;
}
.main-image-blue-eye {
  position: relative;
  bottom: 160px;
  left: 110px;
  z-index: -1;
  opacity: 0;
  transition: .5s ease;
  visibility: hidden;
}
.main-h1, .main-p {
  font-family: 'Outfit', sans-serif;
  font-size: 1em;
  margin: 25px 0;
}
.main-h1 {
  font-size: 1.2em;
  color: white;
  transition: .5s ease;
}
.main-p {
  color: hsl(215, 51%, 70%);
}
.main-div-price {
  display: flex;
  justify-content: space-between;
  margin: 25px 0;
}
.main-div-price-div {
  display: flex;
  height: 20px;
  align-items: center;
  gap: 10px;
}
.main-perfil {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 15px;
  border-top: 1px solid hsl(215, 32%, 27%);
  padding-top: 15px;
}
.main-perfil-img {
  height: 30px;
  border: 1px solid white;
  border-radius: 100%;
}
#main-p-price {
  color: hsl(178, 100%, 50%);
  font-weight: 700;
}
#main-p-time {
  color: hsl(215, 51%, 70%);
}
.strong {
  color: white;
  transition: .5s ease;
  font-weight: 300;
}

/* HOVERS */
.main-a:hover .main-image-blue {
  visibility: visible;
  opacity: 0.6;
}
.main-a:hover .main-image-blue-eye {
  z-index: 0;visibility: visible;
  opacity: 1;
}
.main-h1:hover {
  color: cyan;
}
.strong:hover {
  color: cyan;
}