:root {
  --page-background: #FBF3E8;
  --page-nav-color:  #286e49;
}
body, html {
  margin: 0;
  font-family: calibri;
  font-size: 18px;
  line-height: 1.4;
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}
header {
  position: fixed;
  display: flex;
  width: 100%;
  z-index: 950;
  top: -1px;
}
.page {
  display: flex;
  flex: 1 0 auto;
  z-index:900;
}
.navbar {
  width: 100vw;
  display: flex;
  flex-grow: 1;
  height: 13vmax;
  background-image: url("../images/page_cover_small.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--page-nav-color);
  position: relative;
}
.icon {
  padding: 1%;
  position: absolute;
  top: 1.5vmax;
  right: 0;
}
.content {
  display: flex;
  justify-content: center;
  margin-top: 13vmax;
  background-color: var(--page-background);
  width: 100%;
}
.inner-content {
  width: 90vw;
  max-width: 1700px;
}
.logo_banner {
  display: flex;
  justify-content: right;
  bottom: -1px;
  position: absolute;
  width: 100%;
  height: 13vmax;
  object-fit: cover;
}
.overlay {
    height: 100%;
    width: 0;
    max-width: 600px;
    position: fixed;
    z-index: 1050;
    right: 0;
    top: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
}
.overlay-content {
    position: relative;
    top: 10vh;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 90px;
}
.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: x-large;
    color: #f1f1f1;
    display: block;
    transition: 0.3s;
    font-weight: bold;
}
.overlay a:hover, .overlay a:focus {
    color: #818181;
}
.overlay .closebtn {
    position: absolute;
    top: 3vh;
    left: 45px;
    font-size: 60px;
}
footer {
  background-color: var(--page-nav-color);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 2vh;
  justify-content: center;
  flex-shrink: 0;
}
footer a {
  margin-left: 2vw;
  margin-right: 2vw;
  text-decoration: none;
  color: var(--page-background);
  font-weight: bold;
}
@media screen and (min-width: 640px) {
  .navbar {
    background-image: url("../images/page_cover_medium.jpg");
  }
}
@media screen and (min-width: 1024px) {
  .content {
    margin-top: 13vmax;
  }
  .navbar {
    height: 13vmax;
    background-image: url("../images/page_cover.jpg");
  }
}
a {
  color: var(--page-nav-color);
  text-decoration: none;
}
