/* Navigation bar */
#mainNav{
    position: sticky;
    top: 0px;
    background-color: black;
    width: 100%;
}

#mainNav > ul{
    display: flex;
    list-style-type: none;
    justify-content: center;
}

.navLink, .navLink > a:visited, .navLink > a:active{
    padding: 20px;
    transition: ease 0.5s;
    color: white;
}
    .navLink:hover{
        opacity: 0.3;
    }

/* Body styling */
body{
    background-color: white;
}

h1, h2, h3 {
    text-align: center;
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: normal;
    margin: 10px;
}

h1{font-size: 60px;} h2{font-size: 40px;} h3{font-size: 30px;}

p{
    text-align: left;
    font-family: "Public Sans", sans-serif;
        font-optical-sizing: auto;
        font-weight: 300;
        font-style: normal;
    font-size: 25px;
    max-width: 800px;
    margin: 15px auto;
    line-height: 2;
}

.special{
    color: black;
    text-decoration: underline wavy black;
    font-weight: 500;
    transition: 0.1s;
}

    .special:hover{
        color: gray;
        text-decoration: underline wavy grey;
        font-weight: 400;
        cursor: help;
    }


/* Footer styling */
#colorChangeTester{
    font-size: 13px;
    font-style: italic;
    color: black;
    background-color: white;
    padding: 10px;
    transition: 0.5s;
    text-align: center;
}