html,body {
    margin: 0;
    background-color: rgb(250, 250, 237);
}

#announcement {
    font-family: 'DM Serif Display';
    font-style: normal;
    font-weight: 10;
    font-size: small;
    text-align: center;
}

nav {
    border-bottom: 1px solid rgb(195, 195, 195);
    border-top: 1px solid rgb(195, 195, 195);
    background-color: white;
    filter: blur(100%);
}

nav > ul {
    display: inline-flex;
    list-style: none;
    padding: 5;
    gap: 20px;
}

nav > ul > a {
    text-decoration: none;
    color: black;
}

nav > ul > a#active {
    text-transform: uppercase;
    border-bottom: black solid 5px;
}

nav > ul > a > li {
    font-family: 'DM Serif Display', serif;
}

nav > h1 {
    font-family: 'DM Serif Display';
    font-style: normal;
    font-size: 60px;
    font-weight: 50;
    text-transform: uppercase;
    display: inline-block;
    align-self: center;
    margin: auto;
}