/* 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: black;
  background-image: url('https://irylus.neocities.org/wooden-floor-background.jpg'); /* Replace with your image path */
        background-repeat: no-repeat; /* Prevents the image from repeating */
        background-size: cover; /* Scales the image to cover the entire element */
        background-position: center;
  color: black;
  text-align: center;
  font-family: timesnewroman;
}
li + li {
  margin-top: 20px;
}
footer {
  margin-top: 40px;
  font-size: large;
  text-align: left;
  border-style: dotted;
}