/* 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." */



h1 { 
  color: black;
  font-family:'Calibri', 'Trebuchet MS', sans-serif;
  text-transform: uppercase;
  text-align: center;
}

  
  body {
 background-image:url('https://i.pinimg.com/474x/61/3d/dd/613ddd9422710c8d0ea155252632c307.jpg');
  color: black;
  margin: 20px;
  font-family:'Calibri', 'Trebuchet MS', sans-serif;
  text-align:left;
}

  .scroll-box {
     width: 300px; /* Set a fixed width for the box */
     height: 200px; /* Set a fixed height for the box */
     border: 1px solid #ccc; /* Add a border for visibility */
     overflow: auto; /* Enable scrolling when content exceeds dimensions */
     padding: 10px; /* Add some padding inside the box */
     font-family: Arial, sans-serif; /* Set a font style */
}
 
  
  
  
  
  