/* Dropdown Button */
.dropbtn {
    background-color: #90A0B0;
    color: white;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 1px;
    padding-bottom: 4px;
    margin-top:20px;
    margin-bottom:0px;
    font-size: 16px;
    font-family: "Michroma";
    border: none;
    cursor: pointer;
    border-radius: 5px;
    min-width: 165px;
    
    transition:.2s;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color: #B0C0E0;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
    
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    top: 50px;
    left: 0px;
    background-color: #f9f9f9;
    min-width: 165px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 12px;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 12px;
    font-family: "Michroma";
    transition:.2s;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #DDDDDD}

@keyframes open {
    0%{
        background-color: #90A0B0;
        clip: rect(0px, 400px, 0px, 0px);
    }
    25%{
        background-color: #f9f9f9;
    }
    100%{
        clip: rect(0px, 400px, 1000px, 0px);
    }
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
    display:block;
    animation-name: open;
    animation-duration: 1s;
}