/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #1F1F1F;
  color: white;
  font-family: Verdana;
}

body {
  margin: 0;
  overflow: hidden; /* optional: hides scrollbars */
  background-color: #000; /* optional fallback background */
}

/* BACK IMAGE */
.back-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* make it fill screen neatly */
  z-index: 1; /* behind everything else */
}

/* FRONT IMAGE + TEXT CONTAINER */
.image-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2; /* above back image */
}

/* FRONT IMAGE */
.front-image {
  display: block;
  height: auto;
  max-width: 100%;
}

/* TEXT OVER FRONT IMAGE */
.overlay-text {
  position: absolute;
  top: 50%; /* center vertically */
  left: 50%; /* center horizontally */
  transform: translate(-50%, -50%);
  color: white;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  z-index: 3; /* above front image */