body {
  margin: 0;
  background-color: #1a1b26;
  font-family: cousine, courier;
}

.top_image_holder {
  display: flex;
  justify-content: space-evenly;
}

.top_image_button {
  height: 20vh;
  display: flex;
  background: #1a1b26;
  border: none;
}

.top_image_button img {
  max-width: 100%;
}

.top_image_button:hover {
  cursor: pointer;
  content: url("../shawty-header-fast-loop.gif")
}

.interactable_area {
  height: 75vh;
  display: grid;
  gap: 5rem;
  grid-template-columns: repeat(5, 1fr);
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.side_index {
  display: flex;
  flex-direction: column;
  padding-right: 3rem;
  border-right: solid;
  border-width: 3px;
  border-color: #fd1d75;
  padding-top: 1rem;
  gap: 2rem;
}

.side_index_header {
  font-size: 15px;
  line-height: 0;
  color: #3ecdef;
}

.side_index_separator {
  padding-top: 1rem;
  border-bottom: solid;
  border-color: #fd1d75;
  border-width: 3px;
}

.index_posts_holder {
  height: 65vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
}

.side_index_current {
  background-color: #1a1b26;
  font-size: 20px;
  color: cyan;
  border: none;
  border-bottom: solid;
  font-family: cousine, courier;
  text-decoration: none;
}

.side_index_blogpost {
  background-color: #1a1b26;
  font-size: 20px;
  color: #c0caf5;
  border: none;
  border-width: 2px;
  border-color: #fd1d75;
  font-family: cousine, courier;
  text-decoration: none;
}

.side_index_blogpost:hover {
  cursor: pointer;
  text-decoration: underline;
}

.blogpost {
  overflow-y: auto;
  grid-column: span 4;
  word-wrap: break-word;
  text-align: left;
  padding-right: 2rem;
}

.blogpost h2 {
  font-size: 16px;
  line-height: 0.5;
  color: grey;
  text-decoration: italic;
}

.blogpost h1 {
  font-size: 40px;
  line-height: 0.3;
  color: white;
}

.blogpost h3 {
  font-size: 20px;
  line-height: 0.7;
  color: #c0caf5;
}

.blog_separator {
  border-bottom: solid;
  border-color: #fd1d75;
  border-width: 3px;
}

.blogpost h4 {
  color: cyan;
  font-size: 20px;
  line-height: 0.3;
}

.blogpost p {
  color: #c0caf5;
  font-size: 20px;
}

/* shrink font, gaps on any viewport less than 1080 */
@media (max-width: 1080px) {
  .interactable_area {
    gap: 2rem;
  }

  .side_index {
    padding-right: 1rem;
  }

  .side_index_header {
    font-size: 10px;
  }

  .side_index_current {
    font-size: 15px;
  }

  .side_index_blogpost {
    font-size: 15px;
  }

  .blogpost h2 {
    font-size: 16px;
    line-height: 1;
  }

  .blogpost h1 {
    font-size: 40px;
    line-height: 1;
  }

  .blogpost h3 {
    font-size: 20px;
    line-height: 1;
  }

  .blogpost h4 {
    font-size: 20px;
    line-height: 1;
  }

  .blogpost p {
    font-size: 20px;
  }
}

/*resize image for portrait mobile devices */
@media (max-width: 720px) {
  .top_image_button img {
    max-height: 50%;
    padding-top: 50px;
  }
}
