body {
  font-family: "Manrope", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: hsl(210, 46%, 95%);
  font-size: 0.8125rem;
  padding: 2.5rem 1rem;

  @media (min-width: 650px) {
    padding: 5rem;
  }
}

h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(217, 19%, 35%);
}

p {
  font-size: 0.8rem;
  color: hsl(212, 23%, 69%);
}

.card-container {
  display: flex;
  flex-direction: column;
  max-width: 650px;
  border-radius: 10px;
  overflow: hidden;

  @media (min-width: 650px) {
    flex-direction: row;
    max-width: 760px;
  }
}

.drawer-image {
  max-width: 100%;
  height: auto;
  object-fit: cover;

  @media (min-width: 650px) {
    height: 100%;
  }
}

.card {
  background-color: white;
  padding: 1.5rem;
  margin-top: -60px;

  @media (min-width: 650px) {
    max-width: 700px;
    align-items: center;
    justify-content: center;
    padding-top: 55px;
  }
}

.card-footer {
  display: flex;
  align-items: center;
  position: relative;
}

.michelle-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 1rem;
}

.footer-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: hsl(217, 19%, 35%);
}

.share-icon {
  margin-left: auto;
  background-color: hsl(210, 46%, 95%);
  border-radius: 50%;
  padding: 0.7rem;
  cursor: pointer;
  border: none;
}

.card__footer--share {
  position: absolute;
  bottom: 60px;
  right: 0;
  background-color: hsl(217, 19%, 35%);
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  display: none;
  align-items: center;
  gap: 0.8rem;
}

.card__footer--share.active {
  display: flex;
}

.card__footer--share::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 30px;
  border-width: 10px;
  border-style: solid;
  border-color: hsl(217, 19%, 35%) transparent transparent transparent;
}

.card__footer--socials img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.footer-active {
  display: none;
  justify-content: space-between;
  background-color: hsl(217, 19%, 35%);
  padding: 0.3rem 0.9rem;
  border-radius: 0 0 10px 10px;

  @media (min-width: 650px) {
    width: fit-content;
    margin-left: -10px;
    /* margin-bottom: 700px; */
  }
}

.footer-button-section {
  background-color: hsl(217, 19%, 35%);
  display: flex;
  flex-direction: row;
}

.footer-active-button {
  background-color: transparent;
  color: hsl(217, 19%, 35%);
  border: none;
  cursor: pointer;
}

.card__footer--share {
  display: none;
  position: absolute;
  bottom: 60px;
  right: -20px;
  background-color: hsl(217, 19%, 35%);
  padding: 0.1rem 1.2rem;
  border-radius: 10px;
  align-items: center;
  gap: 0.8rem;
  z-index: 1000;
}

.card__footer--share::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 30px;
  border-width: 10px;
  border-style: solid;
  border-color: hsl(217, 19%, 35%) transparent transparent transparent;
}

.card__footer--share.active {
  display: flex;
}

.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}
