@charset "UTF-8";
/* General styles for the navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1000;
    color: white;
}

.nav-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
}

.nav-button img {
    width: 50px;
    height: 50px;
    margin: 5px 0px 5px 5px;
    border-radius: 35px;
    border: 2px solid #000;
}

.nav-menu {
    display: none;
    position: absolute;
    top: 50px;
    left: 10px;
    background: url('../img/navigation_background5.jpg') center/cover;
    list-style: none;
    padding: 0;
    margin: 10px;
    width: 350px;
    height: 370px;
    font-size: 40px;
    line-height: 30px;
    border-radius: 30px;
    font-family: "Noteworthy-Bold";
    color: #ffffff;
    border: 5px solid #000;
}

.nav-menu li {
    margin: 0;
}

.nav-menu li a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 10px;
    border-radius: 30px;
    text-shadow: 3px 3px #000000;
    transition: background-color 0.3s ease;
}

.nav-menu li a:hover {
     background-color: #00217F;
}

/* Show menu on hover or click */
.nav-button:hover + .nav-menu,
.nav-menu:hover,
.nav-menu.active {
    display: block;
}


/* Footer Styles */
.footer {
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    text-align: center;
    position: fixed;
    width: 100%;
    max-width: 1920px;
    height: 20px;
    z-index: 1000;
    font-family: 'Monday Rain';
    font-size: 12px;
    line-height: 20px;
    border: 0;
    left: 0;
    right: 0;
    bottom: 0;
	margin: 0px auto;
}


/* Mobile Styles */
@media (max-width: 480px) {
    .nav-menu {
        top: 35px;
        width: 170px;
        height: 230px;
        font-size: 20px;
        line-height: 12px;
        border-radius: 5px;
        margin: 10px;
        border: 1px solid #000;
    }

    .nav-button img {
        width: 30px;
        height: 30px;
        border-radius: 20px;
        border: 1px solid #000;
		
    }

    .nav-menu li a {
        border-radius: 10px;
        text-shadow: 2px 2px #000;
    }

    .nav-menu li a:hover {
        background-color: #00217F;
        border: 2px solid #fff;
    }
}

/* Footer Styles */
.footer {
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    text-align: center;
    position: fixed;
    width: 100%;
    max-width: 1920px;
    height: 20px;
    z-index: 1000;
    font-family: 'Monday Rain';
    font-size: 12px;
    line-height: 20px;
    border: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
