body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #111;
}

.background_img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  object-fit: fill;
}

.background_image {
  position: relative;
}

.showcase {
  width: 100%;
  min-height: 320px;
  max-height: 480px;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-left: 0px;
}
.showcase_inner {
  max-width: 960px;
  margin-left: 0px;
}
.showcase img {
  max-width: 100%;
  height: auto;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  color: #000000;
  background-color: white;
  flex-wrap: wrap;
}

.language_switcher_container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 16px auto;
  border: solid 2px black;
  border-radius: 15px;
  padding: 25px;
  max-width: 450px;
  background-color: white;
}

.language_switcher {
  background: none;
  border: none;
  padding: 8px 16px;
  font-size: 1.5rem;
  cursor: pointer;
  font-family: 'EB Garamond', serif;
}

.language_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  max-height: 50px;
}

.language_box a {
  line-height: 0;
}

.selected_language {
  border: 2px solid black;
  border-radius: 10px;
  background-color: goldenrod;
}

.language_selection_highlight:hover {
  border: 2px solid black;
  border-radius: 10px;
  background-color: gold;
}

.language_box_left {
  margin-right: 24px;
}

.language_box img {
  max-height: 100px;
  max-width: 2000px;
  margin-right: 2px;
  padding-right: 2px;
}

.newsletter {
  font-family: 'EB Garamond', serif;
  background: white;
  max-width: 100vw;
  background-color: black;
}

.newsletter h2 {
  font-size: 1.8rem;
  margin: 0;
  color: white;
}

.newsletter p {
  font-size: 1.2rem;
  margin: 0;
  color: white;
}

.nav_item {
  margin: 5px;
  padding-left: 0px;
}

.nav_item img {
  max-height: 300px;
  max-width: 300px;
  padding-bottom: 10px;
}

.nav_item_selected {
  border-bottom: 4px solid black;
  border-radius: 10px;
}

.newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.newsletter_frame {
  background: none;
  padding: 0;
  margin: 16px auto 0;
  display: block;
  width: fit-content;
  border: none;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.newsletter_btn {
  display: block;
  max-height: 100px;
  background-color: black;
  border: 2px solid white;
  border-radius: 10px;
  transition: 1s;
}

.newsletter_btn:hover {
  background-color: goldenrod;
  color: black;
  border: 2px solid black;
  cursor: pointer;
  box-shadow: 2px 2px 5px black;
  transition: 1s;
}

.latest_novel {
  font-family: 'EB Garamond', serif;
  text-shadow: 1px 1px 1px black;
  box-shadow: 15px 5px 10px black;
  border-radius: 15px;
  background: white;
}

header,
main {
  padding: 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
footer {
  text-align: center;
  opacity: 0.75;
  border: 2px solid black;
  background-color: white;
  border-radius: 15px;
  max-width: 150px;
  max-height: 50px;
  margin: 0 auto;
}

footer p {
  margin: 0;
  font-family: 'EB Garamond', serif;
}

@media (max-width: 768px) {
  .showcase {
    min-height: 120px;
    max-height: 180px;
  }

  .showcase-inner {
    padding: 0px;
  }

  .navbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    justify-items: center;
  }

  .nav_item {
    padding: 0;
  }

  .nav_item img {
    max-height: 150px;
    max-width: 150px;
  }

  .language_switcher_container {
    padding: 4px;
    max-width: 250px;
  }

  .language_switcher {
    font-size: 1.2rem;
  }

  .language_box img {
    max-height: 40px;
    max-width: 120px;
  }

  .newsletter_btn {
    max-width: 90vw;
  }

  header,
  main {
    padding: 18px 16px;
  }

  .showcase h1 {
    font-size: 2.2rem;
  }

  .showcase p {
    font-size: 1rem;
  }

  .navbar {
    flex-direction: column;
    gap: 12px;
  }
}
