.navbar {
    width: 100%;
    color: white;
}

.navbar-brand {
    width: 15% !important;
}

.navbar-brand > img {
    width: 100%;
}

.navigation-overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    overflow-x: hidden;
    transition: 0.5s;
    max-width: 100%;
    background: white;
}

.navigation-overlay-content {
    position: relative;
    top: 15%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.logged-in-navbar {
    top: 10%;
}

.navigation-overlay a {
    text-decoration: none;
    color: #273e60;
    transition: 0.3s;
    width: fit-content;
    font-size: 54px;
    margin: auto;
    font-weight: bold;
}

.navigation-overlay a:hover, .navigation-overlay a:focus {
    color: #daaf84;
}

.navigation-overlay > .navigation-close-button {
    position: absolute;
    top: 0;
    right: 14%;
    font-size: 60px;
    font-weight: bolder;
}

@media (max-width: 768px) {
    .navbar-brand {
        width: 30% !important;
    }

    .navigation-overlay a {
        font-size: 30px;
    }
}

@media (max-width: 600px) {
    .navbar-brand {
        width: 60% !important;
    }

    .navbar-brand > img {
        width: 60%;
    }
}
