
/* Trying to resolve issues with the sticky footer https://dev.to/fenok/stretching-body-to-full-viewport-height-the-missing-way-2ghd */
html, body {
  height: -webkit-fill-available;
  min-height: 100%;

}
body {
  /* background: #1F5111; */
  background-color: #1F5111 !important;
  font-family: Poppins, sans-serif;
  height: 100vh;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
}
h4 {
  font-family: Poppins, sans-serif;
}
footer {
  text-align: center;
  margin-top: auto;
  padding-top: 10px;
  position: relative;
}
#test {
  background: #1F5111;
  margin: 10px;
}
.everything {
  padding-top: 10px;
  background: #1F5111;
  /* background: #687864; */
  font-family: 'Comme', sans-serif;
  color: rgb(214, 210, 210);
  /* https://www.geeksforgeeks.org/how-to-give-a-div-tag-100-height-of-the-browser-window-using-css/ */
  height: 100%;
  min-height: 100vh;
}

.infocards {
  background: #E8E0E0;
  color: #212529;
}

.darkmode {
  /* padding-top: 10px; */
  background-color: #283304;
  color:  rgb(214, 210, 210);
  height: 100vh;
  font-family: 'Comme', sans-serif;
  /* Set div to page height: https://www.geeksforgeeks.org/how-to-give-a-div-tag-100-height-of-the-browser-window-using-css/  */
  height: 100%;
  margin-bottom: 0;
  min-height: 100vh;
}
.instructions {
  display: flex;
  justify-content: center;
}
.observation-text{
  color: #212529;
}
.instructionsheadline {
  color: #212529;
  font-family: Poppins, sans-serif;
}

.map-container {
  background-color: #E8E0E0;
  /* margin: 10px 10px; */
  border-radius: 5px;
  /* padding: 15px; */
  padding: 10px 0px 10px 0px;
  margin: 30px 20px 30px 20px;
  /* width: 100vw; */
}

#testing-results {
  padding: 10px 0px 10px 0px;
  margin: 20px 100px 100px 30px;

}

.animal-list{
  background: #081F27;
  list-style-type: none;
 
}
.animalItem {
  padding-bottom: 10px;
}
.custom-wish{
  background: #252913;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 10px;
}
.stats {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}
/* #backbutton {
  background: rgb(55, 55, 226);
} */

#block {
  background: purple;
}
#credit {
  text-align: center;
}
#menu {
  font-family: 'Poppins', sans-serif;
  color: #dae6b5;
}
#activity {
  border-radius: 10px !important;
}

#map { 
  margin: 0 auto;
  /* height: 460px; 
  width: 340px; */
  border: 1px solid #081f273d;
  border-radius: 5px;
  box-shadow: 1px 2px 4px 0px rgb(245, 233, 252);
  height: 75vh;
  width: 75%;



}

/* #savebutton{
  background: orange;
  color: white;
} */



/* How to set it to the corners:
https://www.youtube.com/watch?v=wVnimcQsuwk
#map {
  position: absolute; 
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

} */