html {
  height: 100%;
}

body {
  background-color: hsl(210, 46%, 95%);
  font-size: 13px;
  font-family: "Manrope", sans-serif;
  display: flex;
  flex-flow: column;
  height: 100%;
  align-items: center;
  justify-content: center;
}
body p,
body h1 {
  color: hsl(217, 19%, 35%);
}
body h1 {
  margin-top: 0;
}
body p {
  line-height: 1.5;
}
body main {
  background-color: #ffffff;
  max-width: 400px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-flow: column;
}
@media only screen and (min-width: 960px) {
  body main {
    max-width: 750px;
    flex-flow: row;
    overflow: visible;
  }
}
body main .mainImg {
  display: block;
  box-sizing: border-box;
  overflow: hidden;
}
@media only screen and (min-width: 960px) {
  body main .mainImg {
    width: 100%;
  }
  body main .mainImg img {
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
}
body main .mainImg img {
  width: 100%;
}
body main .contentWrap {
  display: flex;
  flex-flow: column;
  position: relative;
}
@media only screen and (min-width: 960px) {
  body main .contentWrap {
    position: relative;
  }
}
body main .contentWrap section {
  padding-top: 36px;
  padding-right: 36px;
  padding-left: 36px;
}
body main .contentWrap .author {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 36px;
  transition: 2s;
}
@media only screen and (min-width: 960px) {
  body main .contentWrap .author {
    display: flex !important;
  }
}
body main .contentWrap .author .authorWrap {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
body main .contentWrap .author .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
body main .contentWrap .author .authorDetails p {
  margin: 0;
}
body main .contentWrap .author .authorDetails p.authorName {
  font-weight: 700;
}
body main .contentWrap .author .authorDetails p.publishedDate {
  color: hsl(212, 23%, 69%);
}
body main .contentWrap .author .share {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(210, 46%, 95%);
  border-radius: 50%;
  cursor: pointer;
}
body main .contentWrap .shareActive {
  background-color: hsl(217, 19%, 35%);
  padding: 20px 36px;
  display: none;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  width: 328px;
  right: 0;
  z-index: 100;
  transition: 2s;
}
@media only screen and (min-width: 960px) {
  body main .contentWrap .shareActive {
    position: absolute;
    right: -40px;
    bottom: 86px;
    padding: 0px 20px;
    z-index: 100;
    border-radius: 10px;
    width: auto;
  }
  body main .contentWrap .shareActive::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 10px solid hsl(217, 19%, 35%);
    position: absolute;
    bottom: -9px;
    left: 45%;
    text-align: center;
  }
}
body main .contentWrap .shareActive .shareSocial {
  display: flex;
  flex-flow: row;
  gap: 20px;
  align-items: center;
}
body main .contentWrap .shareActive .shareSocial .social img {
  margin: 0 5px;
}
body main .contentWrap .shareActive p {
  color: hsl(212, 23%, 69%);
  text-transform: uppercase;
  letter-spacing: 3px;
}
body main .contentWrap .shareActive .back {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(212, 23%, 69%);
  border-radius: 50%;
  cursor: pointer;
}
@media only screen and (min-width: 960px) {
  body main .contentWrap .shareActive .back {
    display: none;
  }
}

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