html {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-primary);
}

body {
  font-family: "Custom Clean Serif", monospace;
  max-width: 2100px;

  --height: 45rem;
  min-height: var(--height);
  max-height: var(--height);

  display: grid;
  grid-template-columns: 498fr 4fr 498fr;

  padding: 1%;
}

.main-divider {
  height: 80%;
  align-self: center;
  background: linear-gradient(
    to bottom,
    transparent                                               0%,
    color-mix(in srgb, var(--text-primary), transparent 90%) 10%,
    color-mix(in srgb, var(--text-primary), transparent 90%) 18%,
    color-mix(in srgb, var(--text-primary), transparent 70%) 18%,
    color-mix(in srgb, var(--text-primary), transparent 70%) 28%,
    color-mix(in srgb, var(--text-primary), transparent 45%) 28%,
    color-mix(in srgb, var(--text-primary), transparent 45%) 40%,
    color-mix(in srgb, var(--text-primary), transparent 20%) 40%,
    color-mix(in srgb, var(--text-primary), transparent 20%) 60%,
    color-mix(in srgb, var(--text-primary), transparent 45%) 60%,
    color-mix(in srgb, var(--text-primary), transparent 45%) 72%,
    color-mix(in srgb, var(--text-primary), transparent 70%) 72%,
    color-mix(in srgb, var(--text-primary), transparent 70%) 82%,
    color-mix(in srgb, var(--text-primary), transparent 90%) 82%,
    color-mix(in srgb, var(--text-primary), transparent 90%) 90%,
    transparent                                               100%
  );
}

.about,
.blog-container {
  height: 100%;
  width: 100%;

  padding: 3% 10%;
}

.about {
  font-size: 200%;

  text-align: justify;
  text-justify: newspaper;
  text-align-last: center;
}
.blog-container > h1 {
  opacity: .5;
  text-align: right;
}

.blog-container {
  font-size: 150%;
  padding: 5% 10%;
  display: flex;
  flex-direction: column;
}

.blog {
  font-size: 75%;
}
.blog > h2 {
  margin-bottom: 0;
}
.blog > p {
  margin-top: 0;
  padding-left: 10%;
text-align: justify;
    text-justify: newspaper;
    text-align-last: right;
}

.view-more {
  text-align: center;
  margin-top: auto;
  padding-top: 1%;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.5rem;
}

.view-more a {
  color: #33bbff;
  text-decoration: none;
}

.view-more a:hover {
  color: goldenrod;
}

.visit-guides-btn {
  display: none;
}

.visit-blogs-btn {
  display: none;
}

@media (max-width: 768px) {
  .blog-container { display: none !important; }
  .view-more { display: none !important; }
  .visit-guides-btn { display: block; }
  .visit-blogs-btn {
    display: block;
    text-align: center;
    margin: 1.5em auto;
    font-size: 1.4rem;
    font-family: 'Courier New', Courier, monospace;
  }
  .visit-blogs-btn a {
    color: #33bbff;
    text-decoration: none;
  }
  .visit-blogs-btn a:hover {
    color: goldenrod;
  }
  .visit-guides-btn {
    display: block;
    text-align: center;
    margin: 0.5em auto 1.5em;
    font-size: 1.4rem;
    font-family: 'Courier New', Courier, monospace;
  }
  .visit-guides-btn a {
    color: #33bbff;
    text-decoration: none;
  }
  .visit-guides-btn a:hover {
    color: goldenrod;
  }
  body {
    display: block;
    min-height: auto;
    max-height: none;
    padding: 1em;
    margin-top: 4em;
  }
  html {
    display: block;
    flex-direction: unset;
    align-items: unset;
    justify-content: unset;
    background-color: var(--bg-primary);
  }
  .about {
    padding: 0.5em 0.5em;
    font-size: 1.15rem;
    line-height: 1.6;
    text-align: justify;
    text-justify: newspaper;
    text-align-last: left;
  }
  .about h1 {
    font-size: 3.0rem;
    margin-bottom: 0.5em;
  }
  .about p {
    margin-bottom: 1em;
  }
  .main-divider {
    display: none;
  }
  .view-more {
    font-size: 1rem;
    margin-top: 1.5em;
    padding-bottom: 1em;
  }
  .blog {
    font-size: 0.95em;
  }
}
