
body {
    font-family: courier new, serif;
    background-color: hsl(0, 0%, 98%);
    color: hsl(0, 0%, 2%);
    cursor: none;
}

a {
    text-decoration: none;
    color: hsl(0, 0%, 2%);
    cursor: none;
}

p {
    font-weight: 600;
}

h1 {
    font-family: courier new, serif;
    margin-top: 2rem;
}

h2 {
    font-family: courier new, serif;
}

.bold {
    font-weight: 900;
}

.film_background {
    position: fixed;
    z-index: -1;
    width: 100vw;
    height: 100vh;
}

.film_page {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 15rem;
    margin: 0 2rem;
}

.small_arrow {
    width: 2rem;
}

.navbox {
    display: flex;
    flex-direction: row;
    margin: 2rem 0;
    gap: 2rem;
}

.nav_item {
    transition: 0.2s;
}

.nav_item:hover {
    transform: scale(1.1);
    text-decoration: underline;
}

.films_container {
    max-width: 860px;
    margin: auto;
}

.film_genre {
    text-align: center;
    scroll-margin-top: 6rem;
}

.dialogue_margin {
    max-width: 600px;
    margin: 8rem auto;
}

.film_hyperlink {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.review_section {
    line-height: 16px;
}

.scroll_top {
  text-decoration: none;
  position: fixed;
  padding: 2rem 2rem;
  inset: auto auto 2rem 2rem;
  font-weight: 600;
  transition: 0.2s;
}

.scroll_top:hover {
    transform: scale(1.1);
}

.cursor {
    position: fixed;
    width: 50px;
    height: 50px;
    background-image: url("images/pen-cursor.png");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    transform: translate(5%, 1%);
    z-index: 100;
}

    .trail {
      position: fixed;
      width: 0.4rem;
      height: 0.4rem;
      border-radius: 10rem;
      background: hsl(0, 0%, 60%);
      pointer-events: none;
      animation: fade-away 4s ease-out both;
      z-index: -1;
    }

    @keyframes fade-away {
      0% {
        opacity: 0.7;
        transform: scale(1) translateY(0px);
      }

      100% {
        opacity: 0;
        transform: scale(0.1) translateY(10px);
      }
    }