html,
body {
  width: 100vw;
  font-family: "Lato", sans-serif;
  background-color: #f7efee;
  scroll-behavior: smooth;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

h2 {
  font-size: 32px;
}

p,
a {
  line-height: 1.8em;
  font-weight: 400;
}

a {
  color: black;
  text-decoration-thickness: 0.75px;
  text-underline-offset: 3.5px;
}

i {
  color: #f47cb9;
  font-size: 36px;
  margin-right: 10px;
}

nav {
  display: flex;
  position: fixed;
  top: 0;
  background-color: #f7efee;
  justify-content: space-between;
  width: 100%;
}

nav > h1 {
  margin-left: 5vw;
}

section {
  text-align: justify;
  width: 70%;
}

.landing-picture {
  margin: 100px 0 10vh;
  display: flex;
  justify-content: center;
  width: 100%;
}

.landing-picture > img {
  width: 55%;
}

.about a {
  text-decoration-color: #f47cb9;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.read-more-button-container {
  display: none;
}

.about-additional {
  display: block;
}

.articles-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.article-container {
  width: 25%;
  min-width: 240px;
  margin: 20px 40px;
  margin-left: 0;
  display: flex;
  flex-direction: column;
}

.article-container img {
  width: 100%;
  height: 136px;
  object-fit: cover;
  object-positon: center;
}

.article-container:last-child img {
  object-position: bottom right;
}

.article-link {
  font-size: 14px;
}

.podcasts-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-start;
}

.podcast-container {
  margin: 20px 60px 0 0;
  width: 40%;
  min-width: 300px;
}

.credit-footer {
  margin: 50px 0 10px;
}

@media only screen and (max-width: 800px) {
  section {
    width: 90%;
  }

  .landing-picture {
    margin-bottom: 0;
  }

  .landing-picture > img {
    width: 90%;
  }

  .read-more-button-container {
    display: flex;
    justify-content: center;
  }

  .about-read-more-button {
    color: white;
    font-size: 14px;
    background-color: #f47cb9;
    padding: 10px;
    border-radius: 5px;
    cursor: default;
  }

  .hidden {
    display: none;
  }

  .article-container {
    width: 100%;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
  }

  .article-container img {
    height: 50vw;
  }

  .article-link {
    font-size: 16px;
  }

  .podcast-container {
    margin: 10px 0;
    width: 100%;
    min-width: 0;
  }
}
