body {
    background-color: #eac9e2;
}

h1 {
    text-align: center;
    font-family: "Cherry Cream Soda", system-ui;
    font-size: 50px;
    padding-top: 35px;
}

h2 {
    text-align:  center;
    font-family: "Cherry Cream Soda", system-ui;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #eac9e2;
  }
  
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  li {
    display: inline;
    float: left;
  }
  
  li a {
    font-size: 20px;
    font-family: 'Yellowtail', cursive;
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  li a:hover {
    background-color: white;
  }

.smallpicleft {
    height: 200px;
    width: 200px;
    float: left;
    padding: 15px;
}

.smallpicright {
    height: 200px;
    width: 200px;
    float: right;
    padding: 15px;
}

.bannerimage {
    width: 70%;
    height: 550px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

p {
    font-size: 25px;
    
}

a {
  color: black;
}


@media(max-width: 700px) {
    .bannerimage {
        width: 100%;
        height: 400px;
    }

    li a {
      font-size: 15px;
    }
}