
/* Import a font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');


body{
    background-color: rgb(22,32,58);
 
}


h1, h2, h3 {
    color:#000281;
    font-family: sans-serif;
    text-align: center;
}


p {
    color: #565656;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

.header {
    background-color: rgb(22,32,58);
    width: 100%;
    opacity: 1;
    position: sticky;
    top: 0;
    z-index: 2;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.header h1 {
    color: white;
}



/* Navigation Bar */

.topnav {
    overflow: hidden;
    background-color: #AC9362;
    border-radius: 15px;
    display: flex;
}

.topnav a {
    float: left;
    color: rgb(0,0,0);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 16px;
    font-family: sans-serif;
    outline: none;
    border: none;
    border-radius: 15px;
    width: 25%;
    height: 100%;
    transition: background-color 150ms ease-in-out;
}

.dropdown {
    float: left;
    overflow: hidden;
    width: 25%;
    text-align: center;
}

.dropdown .main_menu {
    background-color: #AC9362;
    color: rgb(0,0,0);
    font-size: 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    width: 100%;
    height: 100%;
    transition: background-color 150ms ease-in-out;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 20%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    align-items: left;
    animation: growDown 300ms ease-in-out forwards;
    transform-origin: top center;
    border-radius: 5px;
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    width: 60%;
    transition: background-color 0ms;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    display:block;
}

.dropdown:hover .dropdown-content {
    display:block;
}

@keyframes growDown {
    0% {
        transform: scaleY(0);
    }
    80% {
        transform: scaleY(1.1);
    }
    100% {
        transform: scaleY(1);
    }
}

.topnav a:hover, .dropdown:hover .main_menu {
    border-radius: 15px;
    color: white;
    background-color: rgb(22,32,58);
}








.main_div{
    margin: auto;
    display:block;

    width: 95%;
    background-color: #fafdf3;
      
    border: 3px solid #303F67;
    border-radius: 15px;

    padding-bottom: 250px;
}


.chart{
    background-color: rgb(32,42,68);
    color:#00a767;
    width:500px;
    height:300px;
    border-radius: 10px;
    padding: 5px;
}

.wide_chart{
    background-color: rgb(32,42,68);
    color:#00a767;
    width:650px;
    height:300px;
    border-radius: 10px;
    padding: 5px;
}


.chart_block{
    text-align: center;
    padding: 0px 5% 0px 5%;
}
    

.chartContainer{
    display:flex;
    justify-content: space-evenly;
}


.gridContainer{
    display:grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: min-content;
    gap: 50px;
    justify-content:center;
    overflow: auto;
    color:#00a767;
}

.gridChart{
    background-color: rgb(32,42,68);
    color:#00a767;
    width:350px;
    height:300px;
    border-radius: 10px;
    padding: 5px;
    display: block;
    overflow:auto;
}

.map{
    background-color: rgb(32,42,68);
    color:#00a767;
    width:600px;
    height:450px;
    border-radius: 10px;
    padding: 5px;
}