* {
  box-sizing: border-box;
}
body,td,th,p{
	font-size: 10pt;
	color: #333;
	line-height: 1.5;
}
body {
	background-color: #fdfdfd;
	margin: 0;
	position:relative;
}
ul, li {
	font-size: 10pt;
	color: #333;
}
a {
	color: skyblue;
	text-decoration: none;
}
a:hover, a:focus {
	color: orange;
	text-decoration: none;
}
a img{
	border: none 0px #fff;
}
h1, h2, h3, h4, h5, h6 {
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0 0 20px;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

header {

  background-color: #252831;
  height: 80px;
  display: flex;
  align-items: center;
}
header .menu {
  color: white;
}

main {
  background-color: #f3f3f3;
  min-height: 100%;
}
footer {
  background-color: #444;
  color: #aaa;
  font-size: 8pt;
  letter-spacing: 1px;
  padding: 25px;
  text-align: center;
  text-transform: uppercase;
}
/* ====================== Navigation ====================== */
nav {
  flex-grow: 1;
  text-align:center;
}
nav h1 {
  margin: auto;
}
nav h1 a {
  color: #fff;
  font-size: 14pt;
  font-weight: 200;
  letter-spacing: 10px;
  text-transform: uppercase;
}

.account {
    display: flex;
    flex-direction: row;
    color: #fff;
}

.profilePicture {
    border: 1px solid white;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 15px;
    height: 40px;
    width: 40px;
}

.profilePicture img {
    height: 100%;
    width: 100%;
    border-radius: 15px;
}


/* ====================== Dark Mode ====================== */

body.dark {
  filter: invert(1);
}

body.dark #map,
body.dark #map-container,
body.dark .park img,
body.dark #park-container img {
  filter: invert(1);
}