/* ===== GENERAL STYLES ===== */
body {
    background-color: lightblue;
}

/* ===== HEADINGS ===== */
h1 {
    color: black;
    text-align: center;
}

/* ===== NAVIGATION BAR ===== */
.topnav {
    background-color: black;
    border-radius: 8px;
    overflow: hidden;
}

.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover {
    background-color: #8f48c6;
    color: white;
}

.topnav a.active {
    background-color: #4c04aa;
    color: white;
}
