@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: hsl(210, 46%, 95%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

main {
  display: flex;
  justify-content: center;
  flex-direction: row;
  height: auto;
  font-family: "Manrope", sans-serif;
  width: 60rem;
  margin: 1rem;
}

.imagen {
  width: 25rem;
  border-radius: 20px 0 0 20px;
}

article {
  background-color: white;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0 20px 20px 0;
  position: relative;
}
article h1 {
  font-size: 1.7rem;
  color: hsl(217, 19%, 35%);
  margin-bottom: 1rem;
}
article p {
  color: hsl(214, 17%, 51%);
  font-size: 1.063rem;
}
article .redes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 1.2rem;
}
article .redes .avatar {
  display: flex;
  gap: 0.5rem;
}
article .redes .avatar img {
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
}
article .redes .avatar div h2 {
  font-size: 1rem;
  color: hsl(217, 19%, 35%);
}
article .redes button {
  background-color: hsl(210, 46%, 95%);
  padding: 0.6rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}
article .redes button .share {
  width: 1.2rem;
}
article .redes-sociales {
  background-color: hsl(217, 19%, 35%);
  padding: 0.8rem 2rem;
  display: none;
}
article .redes-sociales p {
  color: white;
}
article .redes-sociales img {
  cursor: pointer;
}

.active {
  display: flex !important;
  align-items: center;
  border-radius: 10px;
  gap: 1rem;
  position: absolute;
  right: 0;
  bottom: 0;
}

.share-button-active button {
  background-color: hsl(217, 19%, 35%);
}

@media screen and (max-width: 46.875rem) {
  main {
    flex-direction: column;
    width: 80%;
    height: auto;
  }
  .imagen {
    width: 100%;
    border-radius: 10px 10px 0 0;
  }
  article {
    border-radius: 0 0 10px 10px;
    padding: 1.5rem;
  }
}
@media screen and (max-width: 28.125rem) {
  article h1 {
    font-size: 1rem;
  }
  article p {
    font-size: 0.81rem;
  }
  article .redes .avatar div h2 {
    font-size: 0.8rem;
  }
}

/*# sourceMappingURL=style.css.map */
