

body {background-color: beige;}

@font-face {
    font-family: "The Constellation";
    src: url(/fonts/Constellation.ttf);
}
@font-face {
    font-family: "Kaushan Script";
    src: url(/fonts/KaushanScript.ttf);
}
@font-face {
    font-family: "Herculanum";
    src: url(/fonts/Herculanum-Regular.ttf);
}
@font-face {
    font-family: "PhosphatePro-Inline";
    src: url(/fonts/PhosphatePro-Inline.otf);
}

ul {
    background-color: black;
    height: 45px;
    top: -16px;
    position: relative;
    float: right;
}


ul li {
    display: inline-block;
    position: relative;
    width: 110px;
}

ul li a {
    display: flex;
    padding: 5px 5px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    width:100%;
    height: 35px;
    justify-content: center;
    align-items: center;
}

ul li a :active {
    transform: scale(0.95);
}


    ul li ul.dropdown li a {
        display: flex;
        width: 160px;
        justify-content: left;
    }

        ul li ul.dropdown li a :active {
            transform: scale(0.95);
        }

    ul li ul.dropdown {
        list-style-type: none;
        margin: 0px;
        padding: 0px 10px 0px 10px;
        background: blue;
        position: absolute;
        z-index: 999;
        display: none;
        height: fit-content;
        top: 45px;
        width: 180px;
        /* display: flex; */
        flex-direction: column;
        border-radius: 6px;
    }
    
    ul li:hover ul.dropdown {
        display: flex;
        flex-direction: column;
        width: 180px;
        margin: 0px;
        padding: 5px 10px 7px 10px;
    }

    ul li ul.dropdown li:hover {
        background: red;
        margin: 0;
        padding: 0px 10px 0px 10px;
        width: 160px;
        border-radius: 25px;
    }

.navbar {
    background-color: black;
    height: 45px;
    display: grid;
    grid-template-columns: 30% 40% 30%;
    top: 30px;
    position: relative;
}


.current_date {
    grid-column-start: 3;
    color: white;
    top: -6px;
    position: absolute;
    z-index: 2;
}

#k9Logo {
    grid-column-start: 2; 
    position: relative;
    display: flex;
    align-items: center;
    z-index: 50;
    color: white;
    top: -35px;
    justify-content: center;
}

#menu {
    grid-column-start: 1;
}

.btn :active {
    transform: scale(0.95);
}

