/* This css is for universal styling only. (Ex. nav bar will appear the same on every page of website) */

html {
    height: 100%;
}

body {
    margin: 0;
    box-sizing: border-box;
    min-width: 200px;
    height: 100%;
    padding-top: 2cm;
}




/*-----------------NAV BAR GENERAL-------------------------*/
/* Add a black background color to the top navigation */
.topnav {
    background-color: rgb(40, 0, 87);
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    /*font-family: verdana;*/
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    
}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: #ddd;
    color: rgb(0, 132, 255);
}

/* Add a color to the active/current link */
.topnav a.active {
    background-color: rgb(98, 109, 146);
    /*background-color: #4c4891;*/
    color: white;
}
/*-----------------NAV BAR GENERAL-------------------------*/

/*-----------------DROPDOWN NAV BAR----------------*/
/* The dropdown container */
.dropdown {
    float: left;
    overflow: hidden;
    /*display: inline-block;*/
    
    
}

/* Dropdown button */
.dropdown .dropbtn {
    font-size: 17px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit; 
    margin: 0; /* Important for vertical align on mobile phones */
    
}

/* Add background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
    background-color: #ddd;
    color: rgb(0, 132, 255);
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: fixed; /* absolute */
    background-color: #bebebe;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border: 1px solid black;
}

/* Links inside the dropdown */
.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
}

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




/* Style the button that is used to open and close the collapsible content */
.collapsible {
    background-color: rgb(121, 121, 121);
    color: rgb(4,4,4);
    cursor: pointer;
    padding: 18px;
    width: 1700px;
    border: none;
    text-align: center;
    outline: none;
    font-size: 15px;
    margin: auto;
    /*border: 1px solid black;*/
    /*margin-bottom: 1px;*/
    /*border-bottom: 1px;*/
}
/* Style the collapsible content. Note: hidden by default */
.content {
    /*padding: 18px;*/
    color: white;
    display: none;
    overflow: hidden;
    background-color: rgb(40, 0, 87);
    text-align: center;
    margin: auto;
    width: 1700px;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.collapsible:hover {
    background-color: #ccc;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    /* background-color: rgb(61, 61, 61); */
    background-color: #201f1f;
    color: white;
    text-align: center;
}



