body {
    background: linear-gradient(135deg, #E079C0 0%, #B2E079 100%);
    font-family: "Chiron GoRound TC", sans-serif;
}


header {
    position: sticky;
    top: 0.5em;
    z-index: 3;
}

h1 {
    font-size: 40px;
}


nav {
    display: flex;
    justify-content: space-around;
}

.navHeading {
    font-size: 20px;
    margin-top: 0.5em;
    color: black;
    font-family: "Delius", cursive;
    font-weight: 700;
}

.navHeading:hover {
    text-decoration: none;
}

.navHeading:active {
    text-decoration: underline;
}

.navHeading:visited {
    color: black;
}


h1, h2, h3, h4, h5, h6 {
    font-family: "Delius", cursive;
    font-weight: bold;
}


.bookend {
    background-color: #AE79E0;
    border: solid .2em #564A61;
    filter: drop-shadow(0em 0em 0.5em rgba(0, 0, 0, 0.205));
    box-sizing: border-box;
    text-align: center;
    margin: 1em 0;
    padding: 1em;
}



a {
    color:#56614A
}

a:hover {
    text-decoration: none;
}

a:visited {
    color:#564A61
}



.outerSection {
    width: 90vw;
    background-color: #fffaf3;
    border-radius: 2em;
    padding: 2em 0;
    margin: 3em 0;
    filter: drop-shadow(0em 0em 0.5em rgba(0, 0, 0, 0.205));
    display: flex;
    flex-direction: column;
    align-items: center;
}

.innerSection {
    width: 65vw;
    background-color: #FFECD6;
    border: 0.5em solid #FFE4C4;
    border-radius: 1em;
    padding: 3em 1em;
    margin: 1em 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
}


.delius {
  font-family: "Delius", cursive;
}

.GoRound {
  font-family: "Chiron GoRound TC", sans-serif;
}


@media (min-width: 500px) {
    .innerSection {
        padding: 3em 2em;
    }
}


@media (min-width: 768px) {
    .innerSection {
        padding: 3em;
    }
}