@charset "UTF-8";
/* CSS Document */

/* General Navigation Bar CSS */
.navbar {
    background-color: rgba(0, 0, 0, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    font-family: "KG Ray of Sunshine";
   	display: flex;
    align-items: center;
    justify-content: center;
    transition: height 0.3s ease;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
    transition: background-color 0.3s ease;
}

.navbar ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Media Queries */

/* 1920px and above */
@media (min-width: 1920px) {
.navbar {
        font-size: 22px;
        height: 50px;
        line-height: 10px;
	max-width: 1920px;
    }
    .navbar ul li {
        margin: 0 50px;
    }
    .navbar ul li a {
        padding: 8px;
    }

    .footer {
        background-color: rgba(0, 0, 0, 0.9); /* Black with transparency */
        color: white;
        text-align: center;
        padding: 0;
        position: fixed;
        width: 100%;
		max-width: 1920px;
        height: 20px;
        bottom: 0;
        z-index: 1000;
        font-family: "KG Ray of Sunshine";
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 0;
		
    }
}


/* 1920px and below */
@media (max-width: 1920px) {
    .navbar {
        font-size: 22px;
        height: 50px;
        line-height: 10px;
    }
    .navbar ul li {
        margin: 0 30px;
    }
    .navbar ul li a {
        padding: 8px;
    }

    .footer {
        background-color: rgba(0, 0, 0, 0.9); /* Black with transparency */
        color: white;
        text-align: center;
        padding: 0;
        position: fixed;
        width: 100%;
        height: 20px;
        bottom: 0;
        z-index: 1000;
        font-family: "KG Ray of Sunshine";
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 0;
    }
}

/* 1200px and below */
@media (max-width: 1200px) {
    .navbar {
        font-size: 20px;
        height: 50px;
        line-height: 10px;
    }
    .navbar ul li {
        margin: 0 10px;
    }
    .navbar ul li a {
        padding: 8px;
    }

    .footer {
        background-color: rgba(0, 0, 0, 0.9); /* Black with transparency */
        color: white;
        text-align: center;
        padding: 0;
        position: fixed;
        width: 100%;
        height: 20px;
        bottom: 0;
        z-index: 1000;
        font-family: "KG Ray of Sunshine";
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 0;
    }
}

/* 768px and below */
@media (max-width: 768px) {
.navbar {
        font-size: 14px;
        height: 30px;
        line-height: 12px;
    }
    .navbar ul li {
        margin: 0 8px;
    }
    .navbar ul li a {
        padding: 4px 1px;
    }

    .footer {
        background-color: rgba(0, 0, 0, 0.9); /* Black with transparency */
        color: white;
        text-align: center;
        padding: 0;
        position: fixed;
        width: 100%;
        height: 20px;
        bottom: 0;
        z-index: 1000;
        font-family: "KG Ray of Sunshine";
        font-size: 12px;
        line-height: 20px;
        margin-bottom: 0;
    }
}

/* 480px and below */
@media (max-width: 480px) {
    .navbar {
        font-size: 12px;
        height: 25px;
        line-height: 10px;
		padding: 3px 0px;
    }
    .navbar ul li {
        margin: 0 10px;
    }
    .navbar ul li a {
        padding: 2px;
    }

    .footer {
        background-color: rgba(0, 0, 0, 0.9); /* Black with transparency */
        color: white;
        text-align: center;
        padding: 0;
        position: fixed;
        width: 100%;
        height: 20px;
        bottom: 0;
        z-index: 1000;
        font-family: "KG Ray of Sunshine";
        font-size: 12px;
        line-height: 20px;
        margin-bottom: 0;
    }
}


/* 300px and below */
@media (max-width: 300px) {
    .navbar {
        font-size: 11px;
        height: auto;
        line-height: 10px;
    }
    .navbar ul li {
        margin: 0 4px;
    }
    .navbar ul li a {
        padding: 2px;
    }

    .footer {
        background-color: rgba(0, 0, 0, 0.9); /* Black with transparency */
        color: white;
        text-align: center;
        padding: 0;
        position: fixed;
        width: 100%;
        height: 20px;
        bottom: 0;
        z-index: 1000;
        font-family: "KG Ray of Sunshine";
        font-size: 12px;
        line-height: 20px;
        margin-bottom: 0;
    }
}
