* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navigation Bar Styles */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  
  inset: 0;
  background-color: aquamarine;
  height: 3.5em;
}

nav div:hover {
  background-color: hsla(0, 0%, 0%, 50%);
  cursor: pointer;
}

nav a {
  /* Remove underline fron links */
  text-decoration: none;
  color: black;
}

.back-to-fics {
  flex: 1;
  padding-left: 1em;
  height: 100%;
}

.fic-nav-dropdown {
  flex: 2;
  text-align: end;
  padding-right: 1em;
  height: 100%;

  position: relative;
}

.fic-chapter-nav {
  position: absolute;

  top: 3.5em;
  right: 0;
  padding: 0.5em 1em;
  background-color: aquamarine;
}

.fic-chapter {
  display: block;
}


/* Main Content Styles */
main {
  margin-top: 3.5rem;
  padding: 1em 1.5em;
  background-color: beige;
}

p {
  margin-bottom: 1.5em;
}

hr {
  padding: 5em;
  border-left: none;
}