/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');*/


/* Global Classes */



header{
    top: 0%;
    background-color: whitesmoke;
    margin-bottom: -2%;
    
}


nav{
    padding: 0%;
    margin: auto auto auto auto;
    width: 75%;
    
}


/*Classes*/

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: inherit;
    /*border-bottom: solid rgb(104, 138, 104) 1px;*/
}



.brand-title{
    font-size: 1.5em;
    margin: .5em;
}

.brand-title a {
    
    color:  rgb(104, 138, 104);
    font-weight: bolder;
    font-size: 3em;
    padding: 0.25em;
    text-decoration: none;
    
}

.navbar-links ul {
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-links li{
    list-style: none;
}

.navbar-links li a {
    text-decoration: none;
    color: rgb(104, 138, 104);
    font-size: 1.5em;
    padding: 1em;
    display: block;
    
}

.navbar-links li a:hover {
  text-decoration: underline;
}

/*
.navbar-links {}
*/
.dropbtn {
    /*background-color: #04AA6D;*/
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
}

.dropdown {
  position: relative;
  display: inline-block;    
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
/*.dropdown:hover .dropbtn {background-color: #3e8e41;}*/

/* Screen specific styles */

@media (max-width: 999px){

    .toggle-button{
        display: flex;
    }

    .navbar-links{
        display: none;
        width: 100%;
    }

    .navbar{
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-links ul{
        width: 100%;
        flex-direction: column;
        background-color: whitesmoke;
    }

    .navbar-links li {
        text-align: center; 
        background-color: inherit;
    }

    .navbar-links li a {
        padding: .5em 1em;
        background-color: inherit;
    }

    .navbar-links.active{
        display: flex;
    }

    
  

}


/*
@media (min-width: 1000px) {}
*/
