.avatar-and-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.avatar-and-name__avatar img {
  border-color: whitesmoke;
  width: 6em;
  border-radius: 40em;
  border-width: 0.1em;
  border-style: solid;
  box-shadow: 0 0 10px white;
  filter: brightness(90%);
}
@media (max-resolution: 200dpi) and (min-width: 1200px) {
  .avatar-and-name__avatar img {
    width: 8em;
  }
}

.avatar-and-name__name {
  align-self: center;
  font-weight: 700;
}
.avatar-and-name__name a {
  color: white;
  text-decoration: none;
}
.avatar-and-name__name a:hover {
  color: yellow;
}

.navbar {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-resolution: 200dpi) and (max-width: 989px) {
  .navbar {
    max-width: 750px;
  }
}
@media (max-resolution: 200dpi) and (min-width: 990px) and (max-width: 1199px) {
  .navbar {
    max-width: 750px;
  }
}
@media (max-resolution: 200dpi) and (min-width: 1200px) {
  .navbar {
    padding-left: 10%;
    max-width: 750px;
  }
}
@media (max-resolution: 200dpi) and (min-width: 1200px) {
  .navbar {
    padding-left: 10%;
    padding-right: 10%;
  }
}

.navbar__links {
  font-weight: 400;
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-items: center;
  margin-bottom: -2px;
}

.post-title a {
  color: black;
}

.post-summary {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
}
@media (max-resolution: 200dpi) {
  .post-summary {
    font-size: 20px;
  }
}
.post-summary p {
  padding-bottom: 1.5em;
}

.post-header-info {
  font-size: 18px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.post-share {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.post-share > iframe {
  padding-left: 0.5em;
}

.post-meta {
  display: flex;
  flex-direction: column;
}

.post-content {
  padding-bottom: 20px;
}

.post-footer-info {
  padding-top: 20px;
  padding-bottom: 2em;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: lightgray;
}
