h1 {
  background-image: url(https://art.pixilart.com/402fd3c96bcadd0.png);
  background-position: center;
  background-size: contain;
  padding: 5px;
  text-align: center;
  color:white;
  text-shadow:
   -1px -1px 0 #000,  
    1px -1px 0 #000,
    -1px 1px 0 #000,
     1px 1px 0 #000;
 border-radius: 5px;
}

h2 {
    text-align: center;
}

main {
    display:inline-flex;
    flex-direction:column;
    align-items: center;
}

div {
    padding: 1% 5% 1% 5%;
    background-color: #e4fba5;
}

     /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: white;
                /* navbar color */
                width: 100%;
                display: flex;
                flex-direction: column;
                padding: 3px;
                overflow: auto;
            }

            #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                height: 10px;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #navbar li {
                padding-top: 10px;
                margin-left:0px
                color:black;
            }

            /* navigation links*/
            #navbar li a {
                color:black;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
            }
            
            p {
              font-family: "Brush Script MT", Georgia;
              font-size: 16px;
            }