body {
  font-family: Open Sans,Arial,sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.7em;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1440px;
    padding: 0 20px;
    margin: auto;
}

a {
    text-decoration: none;
    cursor: pointer;
}

#navbar {
    padding: 15px 0 10px 0;
    background-color: white;
    border-bottom: 1px solid #bfbfbf;
}

#navbar #flex_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#navbar img {
    height: 42px;
}

#navbar #navlinks {
    display: flex;
    gap: 15px;
}

#navbar #navlinks a {
    color: #666;
}

.hamburger {
    display: none; /* Hidden by default on desktop */
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
}

#content p {
    padding: 40px 0;
    text-align: center;
}

#content_sites {
    padding: 40px 0;
}

#content img {
    width: 100%;
}

@media screen and (max-width: 767px) {

    /* Show the hamburger */
    .hamburger {
        display: flex;
    }

    /* Hide navlinks by default, style as a dropdown */
    #navbar #navlinks {
        display: none; /* Hidden until toggled */
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 5px 5px rgba(0,0,0,0.1);
        flex-direction: column;
        z-index: 100; /* Ensure it sits on top of other content */
        gap: 0;
    }

    /* Styling for the links when in mobile view */
    #navbar #navlinks a {
        display: block;
        margin: 0;
        padding: 8px;
        border-bottom: 1px solid #eee;
        text-align: center;
    }

    /* This class is added via JavaScript to show the menu */
    #navbar #navlinks.active {
        display: flex;
    }
}