nav {
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #fff;
    flex-direction: row;
    position: sticky;
    top: 0;
    z-index: 100;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-btn {
    background-color: #3498db;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.dropdown-content a {
    color: black;
    padding: 10px;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover {
    background-color: #f1f1f1;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.logo {
    width: 100%;
}
.logoURL {
    width: 15%;
    margin-left: 24px;
}
.navButtons {
    font-size: 16px;
    color: #000;
    text-decoration: none;
    margin-right: 24px;
    margin-left: 24px;
}
.loginn {
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 14px;
    padding-bottom: 14px;
    background-color: #fff;
    border: solid 1px #283566;
    color: #000;
    font-size: 12px;
    margin-left: 0px;
    margin-top: 0px;
    border-radius: 4px;
    height: 56px;
}
.loginResp {
    padding-left: 24px;
    padding-right: 24px;
    height: 56px;
    font-size: 16px;
    background-color: transparent;
    border: solid 1px #283566;
    color: #283566;
    border-radius: 4px;
}
.register2 {
    padding-left: 24px;
    padding-right: 24px;
    height: 56px;
    font-size: 16px;
    background-color: #283566;
    border: solid 1px #283566;
    color: #fff;
    border-radius: 4px;
    margin-right: 12px;
}
.registerResp {
    padding-left: 24px;
    padding-right: 24px;
    height: 56px;
    font-size: 16px;
    background-color: #283566;
    border: solid 1px #283566;
    color: #fff;
    border-radius: 4px;
    margin-left: 12px;
}
.spacing {
    margin-right: 24px;
}
.burger-menu {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #283566;
    margin-right: 24px;
}
#navLinks {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        height: 7vh;
    }

    .nav-container {
        display: none !important;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 7vh;
        right: 0;
        width: 100%;
        padding: 10px 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 100;
        align-items: center;
    }
    #navLinks {
        display: none;
    }
    .nav-container.show {
        display: flex !important;
    }

    .navButtons,
    .login,
    .register {
        margin: 10px 20px;
        text-align: center;
    }

    .burger-menu {
        display: block;
    }

    .logoURL {
        width: 30%;
    }
    .loginResp {
        padding-right: 20px;
        padding-left: 20px;
        padding-top: 14px;
        padding-bottom: 14px;
        background-color: #283566;
        border: none;
        margin-bottom: 12px;
        color: #fff;
        font-size: 12px;
        margin-left: 0px;
        border-radius: 4px;
        height: unset;
    }

    .registerResp {
        padding-right: 20px;
        padding-left: 20px;
        padding-top: 14px;
        padding-bottom: 14px;
        background-color: #fff;
        border: solid 1px #283566;
        margin-bottom: 12px;
        color: #fff;
        font-size: 12px;
        color: #000;
        border-radius: 4px;
        margin-left: 0px;
        height: unset;
    }
    .footerButtons {
        margin-bottom: 12px;
    }
    .termsStuff {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}
