:root {
    --primary: #015958;
    --secondary: #008F8C;
    --background: #023535;
    /*#0CABA8
    #0FC2C0
    */
}

@font-face {
    font-family: mainFont;
    src: url("./fonts/colosseum.otf");
}

@font-face {
    font-family: gameFont;
    src: url("./fonts/good_timing.otf");
}

body {
    font-family: "mainFont";
    background-color: #f1f1f1;
}

#navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: var(--background);
    height: 50px;
}

.navLink {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navList .navLink:hover {
    transition: 0.5s;
    background-color: var(--secondary);;
}

.navListRight .navLink:hover {
    transition: 0.5s;
    background-color: var(--secondary);;
}

.navList {
    float: left;
}

.navListRight {
    float: right;
}

#homeImg {
    width: auto;
    height: 100%;
    float: left;
}

#homeImg:hover {
    transition: 0.5s;
    background-color: var(--secondary);;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--primary);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    transition: 0.5s;
    background-color: var(--secondary);
}

.dropdown:hover .dropdown-content {
    transition: 0.5s;
    display: block;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: mainFont;
    margin: 0;
}

.dropbtn:hover {
    transition: 0.5s;
    background-color: var(--secondary);;
}

.burger {
    display: none;
    font-size: 30px;
    background: none;
    color: white;
    background-color: var(--background);
    border: none;
    text-align: right !important;
    width: 100%;
    height: 50px;
    cursor: pointer;
}

/* Mobile Styles */
@media screen and (max-width: 900px) {
    .burger {
        display: block;
    }

    #navbar {
        display: none;
        flex-direction: column;
        background-color: var(--background);
        /*width: 95.3%;*/
        position: absolute;
        top: 50px;
        left: 8px;
        right: 8px;
        z-index: 1000;
        height: auto;
    }

    #navbar.show {
        display: flex;
    }

    .navList,
    .navListRight,
    .dropdown {
        float: none;
        width: 100%;
    }

    .navLink,
    .dropbtn {
        display: block;
        text-align: left;
        padding: 14px 20px;
        width: 100%;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        width: 100%;
        display: none;
    }


    #homeImg {
        width: auto;
        height: 60px;
        float: left;
    }
}

.configbtn {
    background-color: var(--secondary);
    border: none;
    color: #f1f1f1;
    font-size: large;
    border-radius: 20px;
    width: 50%;
    height: 4vh;
    display: block;
    margin: auto;
    margin-top: 10px;
}

.configbtn:hover {
    transition: 0.5s;
    background-color: #007080;
}

input {
    font-family: mainFont;
}