@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Luckiest+Guy&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    border: 1px solid rgba(255, 0, 0, 0); /* Debugging purpose, to be removed later */
}

.navbar {
    position: sticky;
    width: 715px;
    margin: auto;
    height: 13.5vh;
    max-height: 115px;
    padding: 20px;
}

#navlogo {
    overflow: hidden;
    position: fixed;
    margin: 0px;
    padding: 0px;
    height: 100%;
    float: left;
    left: 0px;
    border-right: 1px outset white ;
    border-left: 1.5px inset rgb(0, 0, 0) ;
}

.navbar a {
    color: white;
    text-decoration: none;
    display: block;
    text-align: center;
    font-family: "Montserrat",Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: larger;
    font-weight: 600;
    transition: 0.3s;
    border-radius: 10px;
}

.navbar a:hover {
    transition: 0.3s;

transform: scale(1.1);
    border-radius: 10px;
}

.navbar a:active {
    transform: scale(0.95);
    transition: 0.1s;
}

.navbar ul {
    padding: 0px;
    margin-left: 75px;
    list-style-type: none;
}

.navdiv {
    
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 75%;
    border: 1px inset rgba(255, 255, 255, 0.096);
    background-color: rgba(255, 255, 255, 0.192);
    cursor: default;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: rgba(0, 255, 106, 0.103) 0px 0px 100px;

    margin-top: 2vh;
    backdrop-filter: blur(10px);
}

li {
    width: 24%;
    display: inline-block;
    
}