/* 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 {
  text-align: center;
  
  }
body {
  text-align: center;
  background: linear-gradient(to bottom, lightblue, lightgreen);
  color: black;
  font-family: Courier;
  
    padding: 20px; /* Applies 20px padding to all four sides */
    padding: 10px 20px; /* 10px top/bottom, 20px left/right */
    padding: 5px 10px 15px 20px; /* top, right, bottom, left */
    padding-top: 10px; /* Specific side padding */
    padding-right: 20px;
    padding-bottom: 30px;
    padding-left: 40px;
}