h1 {
    font-family: 'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', sans-serif;
    font-size: 33px;
}
p {
    font-family: 'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', sans-serif;
    font-size: 20px;
    margin: 0;
}
a {
    font-family: 'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', sans-serif;
    font-size: 20px;
    text-decoration: none;
    color: rgb(0, 0, 0);
}

/* Navbar styles */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 9%;
    width: 90%;
    margin-top: 3%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
}
li {
    float: left;
    margin-left: 1%;
}
li a {
    display: block;
    text-align: center;
    padding: 14px 16px;
}
li a:hover {
    background-color: #c9dff6;
}

.hamburger-menu {
    display: none;
    font-size: 30px;
    cursor: pointer;
    margin-left: 4%;
    padding: 2%;
}

/* Dropdown menu styles */
.dropdown-menu {
    display: none;
    position: relative;
    margin-top: 0%;
    margin-left:0%;
    width: 100%;
    background-color: #f9f9f9;
    flex-direction: column;
    align-items: center;
}
.dropdown-menu a {
    padding: 12px 16px;
    text-decoration: none;
    color: black;
    display: block;
    width: 100%;
    text-align: center;
}
.dropdown-menu a:hover {
    background-color: #ddd;
}

/* Responsive Navbar */
@media (max-width: 1250px) {
    .navbar-links {
        display: none;
    }
    .hamburger-menu {
        display: block;
    }
}