/* 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 {
  margin: 0;                           /* niente bordo intorno alla pagina */
  min-height: 100vh;                   /* body grande quanto lo schermo */
  
  background-image: url("/sfondo.jpg"); /* percorso immagine */
  background-repeat: repeat;           /* ripeti in orizzontale e verticale */
  background-color: white;             /* colore di fallback se l'immagine manca */
  
  color: black;                        /* colore testo predefinito */
  font-family: "Times New Roman", Times, serif;
}