/* 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-image: url('Background3.jpg');
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;
      color: #2C302E;
      font-family: "Gaegu", sans-serif;
      font-weight: 400;
      font-style: normal;
      text-align: center; /* this will center all inline text like h1, p, etc. */
    }

    h1 {
      font-family: 'Dancing Script', cursive;
      font-size: 48px;
      margin-top: 50px;
    }

    ul {
      list-style-type: none;
      padding: 0;
    }

    li {
      margin: 10px 0;
    }