* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-inline-size: 100%;
  block-size: auto;
}

body {
  height: 100vh;
  font-family: "Manrope", serif;
  font-size: 13px;
  background-color: hsl(210, 46%, 95%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 20.436rem;
  margin: 1.5rem;
  border-style: none;
  border-radius: 0.5rem;
  background-color: white;
}
.container h2 {
  color: hsl(217, 19%, 35%);
  font-size: 1rem;
}
.container p {
  color: hsl(214, 17%, 51%);
  font-weight: 500;
}
.container p.name {
  color: hsl(217, 19%, 35%);
  font-weight: 700;
}
.container p.date {
  color: hsl(212, 23%, 69%);
}
.container .text-body {
  margin: 0.5rem;
}
.container .text-body h2.inner-text {
  margin: 1rem;
  margin-top: 2rem;
}
.container .text-body p.inner-text {
  margin: 1rem;
}
.container .footer {
  position: relative;
  padding-top: 0;
  padding-bottom: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.container .footer .profile-container {
  width: 3rem;
  margin-left: 1rem;
}
.container .footer .profile-container img {
  border-radius: 50%;
}
.container .footer .inner-text-footer {
  display: flex;
  flex-direction: column;
  margin-right: auto;
}

.img-container img {
  display: block;
  border-top-right-radius: 0.5rem;
  border-top-left-radius: 0.5rem;
}

.share-container button {
  height: 2rem;
  width: 2rem;
  margin-right: 0.5rem;
  border-style: none;
  border-radius: 50%;
  background-image: url("images/icon-share.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.share-container button .sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.share-container button:hover {
  transform: scale(1.1);
}
.share-container button:active {
  background-color: hsl(217, 19%, 35%);
}
.share-container dialog {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 15rem;
  padding: 10px;
  background-color: hsl(217, 19%, 35%);
  border-style: none;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.share-container dialog h3 {
  color: hsl(212, 23%, 69%);
  text-transform: uppercase;
  letter-spacing: 0.3rem;
}
.share-container .pop-up-button {
  height: 2rem;
  width: 2rem;
  margin-right: 0.5rem;
  border-style: none;
  border-radius: 50%;
  background-image: url("images/icon-share.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.share-container .pop-up-button .sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.share-container a img {
  height: 1rem;
  display: block;
}

.footer-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.attribution {
  display: flex;
  justify-content: center;
}

a {
  color: blue;
  text-decoration: none;
}

a:hover {
  font-weight: bold;
}

a:visited {
  color: blue;
}

@media (min-width: 62.5rem) {
  .container {
    margin: 0;
    padding: 0;
    max-width: 50rem;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .img-container img {
    margin-bottom: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0.5rem;
  }
  .share-container {
    position: relative;
  }
  .share-container .pop-up-container {
    position: absolute;
    top: -60px;
    right: unset;
    left: -7rem;
    width: unset;
    height: unset;
  }
  .share-container .pop-up-container dialog {
    border-radius: 0.5rem;
  }
  .share-container .pop-up-container .pop-up-button {
    /* Temporary CSS property to hide button from screen. Will fix later. */
    display: none;
  }
}/*# sourceMappingURL=styles.css.map */