@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body {
    margin: 0;
    padding: 0;
}

#content {
    margin: 3em;
    overflow-y: scroll;
    position: relative;
}

/* HEADERS * HEADERS * HEADERS * HEADERS * HEADERS * HEADERS * HEADERS */
.headers {
    font-family: "Inter", sans-serif;
    font-weight: 900;
    display: block;
    color: #222;
}

/* "CS112" */
h1 { font-size: 250%; }

/* "Assignments" */
/* h2 {
    font-size: 250%;
} */

/* NAVIGATION * NAVIGATION * NAVIGATION * NAVIGATION * NAVIGATION * NAVIGATION */
.navigation {
    width: 100%;
    height: 6.2vh;
    background-color: #F9F9F9;
    margin: 0;
    padding: 10px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.07);
}

.navigation a {
    font-size: 11px;
    color: #ADADAD;
    text-decoration: none;
}

.navigation a:hover { text-decoration: underline; }

.navigation button {
    float: right;
    width: 40px;
    height: 30px;
    margin-right: 1em;
    padding-bottom: 1.5em;
    /* margin-top: 0; */
    border: 1px solid #777;
    border-radius: 4px;
    background-color: #ebebeb;
    /* border: none; */
    cursor: pointer;
}

.navigation button:hover { background-color: #DDD; }

.navigation button:active { background-color: #CCC; }

.navigation img {
    width: 22px;
    height: 22px;
}

#banner {
    background-color: #426BFB;
    padding: 30px;
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: all 400ms ease-in-out; 
}

#banner:hover { background-color: #222; }

.content {
    display: none;
    padding: 6px 12px;
    border-top: none;
    overflow-y: scroll;
    height: 900px;
}

.content a { 
    text-decoration: none; 
    transition: all 400ms ease-in-out; 
}

.content a:hover { 
    background-color: #F4C672; 
    text-decoration: underline;
}

.menulinks {
    text-decoration: none;
    border: none;
    outline: none;
    display: block;
    margin: 10px 0;
    text-align: left;
    background: none;
    transition: all 400ms ease; 
    cursor: pointer;
}

.menulinks:hover {
    color: #426BFB;
    text-decoration: underline;
}