* {
  color: white;
}

html {
  font-size: 100%;
}

:root {
}

@font-face {
  font-family: "Pirata-One";
  src: url("fonts/PirataOne-Regular.ttf");
}

@font-face {
  font-family: "Piazolla";
  src: url("fonts/Piazzolla-Medium.ttf");
  font-weight: 500;
}

@font-face {
  font-family: "Piazolla";
  src: url("fonts/Piazzolla-BlackItalic.ttf");
  font-style: italic;
  font-weight: 900;
}

h2 {
  font-size: 1.5em;
  font-weight: 700;
  margin: 0;
}

p {
  font-size: 1.4em;
  margin: 0.7em 0;
}

body {
  background-color: #0e0d0d;
  font-family: "Piazolla";
}

header {
  /* position: fixed; */
}

nav {
  position: fixed;
  box-sizing: border-box;
  width: 100%;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
  background-color: #0e0d0d;
}

a {
  text-decoration: none;
  font-size: 2.5em;
  font-family: "Piazolla";
}

nav a {
  font-size: 1.4em;
}

.right-nav-links {
  display: flex;
  gap: 3em;
  margin-right: 2em;
}

#logo {
  font-family: "Pirata-One";
  font-size: 2em;
}

main {
  margin-top: 8em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content {
  /* might not need overflow stopper */
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 52vw;
}

.content h2,
p {
  /* align-self: flex-start; */
  width: 100%;
}

img {
  align-self: center;
  width: 100%;
  height: auto;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 900;
  font-style: normal;
}

.top-ch-select {
  display: flex;
  gap: 3em;
}

.ch-header {
  font-style: italic;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ch-footer {
  margin: 2em;
}

.ch-footer ul {
  display: flex;
  align-items: center;
  gap: 3em;
  line-height: 1em;
}

#chapter-select {
  /* font-family: "Piazolla";
  font-weight: 500; */
  padding: 0.5em;
  background-color: #0e0d0d;
}

footer {
}

footer p {
  text-align: center;
  font-size: 1em;
}

@media (max-width: 1370px) {
  .content {
    width: 60vw;
  }
}

@media (max-width: 500px) {
  .content {
    width: 80vw;
  }
  html {
    font-size: 80%;
  }
  .top-ch-select {
    gap: 2em;
    line-height: 1em;
  }
  .ch-footer ul {
    gap: 2em;
  }
}
