* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

h3 {
    text-align: center;
}

#home {
    display: block;
    height: 100%;
    background-color: #4CAF50;
    font-family: cursive;
    font-style: italic;
}

#left-menu-hamburger,
#right-menu-hamburger {
    background-color: #333;
    color: white;
}

/*    position: fixed;    */
.navbar {
    top: 0;
    width: 100%;
    height: 50px;
    overflow: hidden;
    background-color: #333;
    font-family: Arial, Helvetica, sans-serif;
    z-index: 1000;
}

.navbar a.topnav-toplevel-link {
    float: left;
    height: 100%;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar a.degree-link {
    float: left;
    width: 100%;
    font-size: 1em;
    color: white;
    text-align: center;
    padding: 0.5em;
    text-decoration: none;
}

.dropdown {
    float: left;
    width: 100%;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font: inherit;
    margin: 0;
}

.navbar a:hover,
.dropdown:hover .dropbtn {
    background-color: orangered;
}

.dropdown-content {
    display: none;
    position: absolute;
    width: 100%;
    left: 0;
    background-color: #f9f9f9;
    color: black;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content .header {
    background: orangered;
    padding: 0.5em 1em;
    color: white;
}

.header>h2 {
    padding: 0;
    margin: 0;
}

/*
    .dropdown:hover .dropdown-content {
        display: block;
    }
*/

/* Create three equal mega-menu-columns that floats next to each other */
.mega-menu-column {
    float: left;
    width: 19.9999%;
    padding: 10px;
    height: auto;
    background-color: #ccc;
}

.mega-menu-column a {
    float: none;
    color: black;
    padding: 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.mega-menu-column a:hover {
    background-color: #ddd;
}

/* Clear floats after the mega-menu-columns */
.mega-menu-row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - makes the three mega-menu-columns stack on top of each other instead of next to each other */
@media only screen and (max-width: 600px) {
    .mega-menu-column {
        width: 100%;
        height: auto;
    }
}