@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
:root {
  --VeryDarkGrayishBlue: hsl(217, 19%, 35%);
  --DesaturatedDarkBlue: hsl(214, 17%, 51%);
  --GrayishBlue: hsl(212, 23%, 69%);
  --LightGrayishBlue: hsl(210, 46%, 95%);
  --Manrope: Manrope;
}

body {
  background-color: white;
  user-select: none;
}

.preview {
  position: relative;
  background-color: var(--LightGrayishBlue);
  border-radius: 10px;
  left: 28.5%;
  margin: 20em 0 0 0;
  width: 53em;
  height: 20em;
  box-shadow: 5px 5px 10px gray;
}

.preview__image {
  display: inline-block;
  position: relative;
  width: 21em;
  height: 20em;
  border-radius: 10px 0 0 10px;
  float: left;
}

.preview__title {
  display: inline-block;
  position: relative;
  color: black;
  font-size: 1.5em;
  margin: 35px 0 0 42px;
  font-weight: 800;
  font-family: var(--Manrope);
  right: 0;
  top: 0;
  letter-spacing: -0.5px;
}

.preview__info {
  display: inline-block;
  position: relative;
  color: black;
  margin: 12px 0 0 42px;
  font-size: 0.9em;
  line-height: 23px;
  color: var(--DesaturatedDarkBlue);
  font-weight: 800;
  font-family: var(--Manrope);
}

.preview__author {
  position: relative;
  top: 24px;
  left: 42px;
}

.author__image {
  width: 2.8em;
  height: 2.8em;
  float: left;
  border-radius: 50%;
}

.author__name {
  font-family: var(--Manrope);
  color: black;
  font-size: 0.9em;
  display: inline-block;
  margin: 0 0 0 20px;
}

.author__date {
  font-family: var(--Manrope);
  color: var(--DesaturatedDarkBlue);
  font-size: 0.9em;
  display: block;
  position: relative;
  top: -7px;
  left: 18px;
  letter-spacing: 0.3px;
}

.author__button {
  display: inline-block;
  position: relative;
  float: right;
  top: -63px;
  border: none;
  right: 94px;
  width: 2.7em;
  height: 2.7em;
  border-radius: 50%;
  background-color: white;
  transition: 0.5s;
}
.author__button:hover {
  cursor: pointer;
  /*
  .share {
    display: inline-block;
  }
   */
}

.author__button--clue {
  display: none;
  background-color: var(--GrayishBlue);
}

.share {
  display: none;
  position: absolute;
  top: -90px;
  right: -30px;
  background-color: var(--VeryDarkGrayishBlue);
  width: 18em;
  height: 4em;
  border-radius: 10px;
}

.share::after {
  content: "";
  position: absolute;
  left: 135px;
  bottom: -20px;
  border: 10px solid transparent;
  border-top: 10px solid var(--VeryDarkGrayishBlue);
}

.share__text {
  position: relative;
  color: white;
  font-family: var(--Manrope);
  font-size: 0.9em;
  letter-spacing: 6.5px;
  left: 45px;
  top: 20px;
  margin: 0;
}

.share__list {
  float: right;
  position: relative;
  display: inline-block;
  top: -10px;
  right: 33px;
}

.share__item {
  margin: 7px;
  width: 1.5em;
  height: 1.5em;
}

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