@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: #f1f1f1;
  overflow: visible;
}


/* Header/Blog Title */
.header {
    /*font-family: Arial;*/
	font-family: 'Poppins', sans-serif;
	margin: auto;
    box-sizing: border-box;
    padding-right: 30px;
    padding-left: 30px;
    text-align: center;
    background: #e8fbe4;
}

.header h1 {
  font-size: 50px;
  color: #104b0c;
  margin: auto;
  padding-top: 15px;
  padding-right: 5px;
  padding-left: 5px;
}
.header p {
  margin: 5px;
}

/* Create three unequal header columns that floats next to each other */
.column {
  float: left;
  padding: 5px 0;
}

.left, .right {
  width: 15%;
}

.middle {
  width: 70%;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

/* Clear floats before the columns */
.row:before {
  content: "";
  display: table;
  clear: both;
}
/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #6ca85d;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #105b0a;
  color: black;
}
.highlight {
  background-color: red;
  color: black;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 100%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 2%;
  background-color: #f1f1f1;
  padding-left: 0px;
}


/* Add a card effect for articles */
.card {
  background-color: white;
  padding: 5px;
  margin-top: 0px;
  height: 90%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.map {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
}
#map {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
}

    .legend {
        background-color: #fff;
        border-radius: 3px;
        bottom: 30px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
        padding: 10px;
        position: absolute;
        right: 10px;
        z-index: 1;
    }

    .legend h4 {
        margin: 0 0 10px;
    }

    .legend div span {
        border-radius: 50%;
        display: inline-block;
        height: 10px;
        margin-right: 5px;
        width: 10px;
    }

/* Footer */
.footer {
 position: fixed;
 left:0;
 right:0;
 bottom:0;
 leftpadding: 20px;  
 text-align: center;
 font-size: 10px;
 font-weight: lighter;
 /* background: #ddd;*/
 /* margin-top: 20px;*/
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}
/* ====Dropdown styles====================*/
/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.dropdown a:hover, .dropdown:hover .dropbtn {
  background-color: #105b0a;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* 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 content (hidden by default) */
.dropdown-subcontent {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown 
.dropdown-subcontent a {
  float: none;
  color: red;
  padding: 12px 16px;
  text-decoration: none;
  display: inline-block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-subcontent a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown-content:hover .dropdown-subcontent {
  display: inline-block;
}
/*=Dropdown styles end======*/
    #info {
        display: table;
        position: absolute;
		top:45px;
		right:50px;
        margin: 0px auto;
        word-wrap: anywhere;
        white-space: pre-wrap;
        padding: 5px;
        border: none;
        border-radius: 5px;
        font-size: 12px;
        text-align: right;
        color: #222;
        background: #C6CCCC;
		font-family: monospace;
    }