/* 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;
  

  background-image: url('tile.png');
  background-repeat: repeat;
  background-size: auto;      /* 👈 this makes it tile */
}

.main {
  max-width: 700px;          /* Keep it readable */
  margin: 50px auto;         /* Center horizontally & add top spacing */
  padding: 20px;             /* Inner spacing */
  background-color: white;   /* Contrast with tiled background */
  border-radius: 10px;       /* Optional: rounded corners */
  box-shadow: 0 0 20px rgba(0,0,0,0.1); /* Optional: soft shadow */
}

h1 {
    text-align: center;
  }




