/* 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-image: url('photos/image.jpg');
  background-repeat: repeat-y;
  color: #f7f0e1;
  font-family: Times;


  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  margin: 0; /* Remove default margin */
  
  height: 100%; /* Ensure the body takes full height of the viewport */
  min-height: 100vh; /* Ensure the body takes at least the height of the viewport */
  overflow-y: auto; /* Enable vertical scrolling */
}