:root {
    --edwhite: #F0EEEF;
    --edpurple: #460753;
    --edblack: #18021C;
}

a, a:hover, a:visited, a:active {
    color: inherit;
    text-decoration: none;
   }

h1 {
    color: var(--edblack);
}

.navcontainer img {
    padding: 20px;
}

img {
    display: block;
}

.navcontainer {
    width: 100%;
    position: fixed;
}
.navbar {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 1rem;
    justify-content: space-between;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.navleft h2{
    color: var(--edpurple);
    font-size: 2rem;
    padding-left: 60px;
    padding-top: 1.2rem;
    font-weight: 500;
}

.navright{
    display: inline-flex;
    flex-direction: row;
    margin-top: 50px;
    margin-right: 30px;
    color: var(--edpurple);
}

.navright h3 {
    color: var(--edpurple);
    margin-left: 10px;
    margin-right: 10px;
    font-weight: 400;
    font-size: 1.5rem;
    font-family: 'Instrument Serif', serif;
}

.navright li {
    list-style-type: none;
    display: inline-block;
    flex-direction: row;  
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 30px;
    height: 3.6px;
    margin-bottom: 6px;
    color: var(--edpurple);
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}