* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.attribution {
  position: absolute;
  bottom: 20px;
  font-size: 11px;
  text-align: center;
}

.attribution a {
  color: hsl(123, 92%, 14%);
}

html {
  font-family: "Manrope";
  color: hsl(217, 19%, 35%);
}

h1 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

p {
  font-size: 14px;
  font-weight: 500;
  color: hsl(214, 17%, 51%);
  line-height: 1.6;
}

.name {
  font-weight: 700;
  color: hsl(217, 19%, 35%);
}

.date {
  color: hsl(212, 23%, 69%);
}

.share {
  color: hsl(212, 23%, 69%);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4px;
}

@media screen and (min-width: 770px) {
  h1 {
    font-size: 20px;
    line-height: normal;
  }
  p {
    font-size: 13px;
  }
}
.card-container {
  background-color: hsl(0, 0%, 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-height: 900px;
  width: 85%;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}
.card-container .image-container {
  height: 180px;
  background-image: url("../images/drawers.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  border-radius: 10px 10px 0px 0px;
}
.card-container .text-container {
  width: 100%;
}
.card-container .text-container h1 {
  margin: 30px 0px 10px 0px;
  padding: 0px 28px;
}
.card-container .text-container .description {
  margin: 10px 0px 20px 0px;
  padding: 0px 28px;
}
.card-container .text-container .bio-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 28px;
  transition: 0.5s;
}
.card-container .text-container .bio-container .profile-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-container .text-container .bio-container .profile-container .profile {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.card-container .text-container .bio-container .share-icon {
  background-color: hsl(210, 46%, 95%);
  padding: 5px 8.5px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  fill: hsl(214, 17%, 51%);
  transition: 0.3s;
}
.card-container .text-container .bio-container .hidden {
  display: none;
  transition: 0.3s;
}

@media screen and (min-width: 770px) {
  .card-container {
    flex-direction: row;
    min-height: 290px;
    min-width: 50%;
    max-width: 75%;
    width: 720px;
  }
  .card-container .image-container {
    flex: 0.42;
    height: 100%;
    background-position: left;
    border-radius: 10px 0px 0px 10px;
  }
  .card-container .text-container {
    flex: 0.58;
    padding: 34px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .card-container .text-container h1 {
    margin: 0px;
    padding: 0px;
  }
  .card-container .text-container .description {
    margin: 0px;
    padding: 0px;
  }
  .card-container .text-container .bio-container {
    padding: 0px;
  }
  .card-container .text-container .bio-container .profile-container {
    gap: 10px;
  }
  .card-container .text-container .bio-container .share-icon {
    padding: 5px 8.5px;
  }
}
.share-visible {
  position: relative;
}
.share-visible #share-container {
  background-color: hsl(217, 19%, 35%);
  border-radius: 0px 0px 10px 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  padding: 10px 28px;
  transition: 0.3s;
}

@media screen and (min-width: 770px) {
  .share-visible #share-container {
    border-radius: 10px;
    top: -72px;
    left: 225px;
    width: fit-content;
    gap: 18px;
    padding: 26px 40px;
  }
  .share-visible #share-container .share {
    font-size: 13px;
  }
  .arrow {
    position: absolute;
    top: -30px;
    right: -2px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid hsl(217, 19%, 35%);
    transform: rotate(180deg);
  }
}

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