/* 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: white;
  color: black;
  font-family: Verdana;
/* Sets the image as the background */
  background-image: url('Crimstone.png');
  
  /* Tells the browser to repeat (tile) the image horizontally and vertically */
  background-repeat: repeat;
  
  /* Keeps the background image fixed in place while scrolling (optional) */
  background-attachment: fixed;
  
  /* Ensures the background covers the entire viewport starting from the top-left */
  background-position: top left;
}
.image-container {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically (if the container has height) */
}