/* Large View */
@media screen and (min-width: 769px) {
  /* Hide the hambuger/mobile nav bar */
  .nav {
    display: none;
  }

  /* Hide the hamburger/mobile active page */
  .show {
    display: none;
  }

  /* Style the entire nav bar */
  ul.large_nav {
    list-style-type: none;
    background-color: #333;
    text-align: center;
    width: 100%;
  }

  /* Style the li elements inj nav bar to arrange them horizontally */
  ul.large_nav li {
    float: none;
    display: inline-block;
  }

  /* Style 'a' elements inside li elements of nav bar */
  ul.large_nav li a {
    display: block;
    color: #ffffff;
    padding: 10px 16px;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.2s;
  }

  /* Style link hover effect on nav bar */
  ul.large_nav li a:hover:not(.active) {
    background-color: #111;
  }

  /* Style link active effect on nav bar */
  ul.large_nav li a.active {
    background-color: #067940;
  }

  /* Hide hamburger icon of mobile nav bar */
  a.icon {
    display: none;
  }
}
/* Mobile View */
@media screen and (max-width: 768px) {
  /* Hide the links inside the navigation menu that are not selected */
  #hide {
    display: none;
  }

  /* Unhide hamburger selected screen for mobile */
  .show {
    display: block;
  }

  /* Style the entire nav bar */
  ul.nav {
    list-style-type: none;
    background-color: #333;
    text-align: center;
    overflow: hidden;
  }

  /* Style the li elements inj nav bar to arrange them horizontally */
  ul.nav li {
    float: none;
    display: inline;
  }

  /* Style 'a' elements inside li elements of nav bar */
  ul.nav li a {
    display: block;
    color: #ffffff;
    padding: 10px 16px;
    text-decoration: none;
    font-size: 20px;
  }

  /* Set link hover effect */
  ul.nav li a:hover:not(.active) {
    background-color: #111;
  }

  /* Set link active effect */
  ul.nav li a.active {
    background-color: #067940;
  }

  /* Hide nav bar for larger screens */
  .large_nav {
    display: none;
  }

  /* Style the hamburger icon */
  a.icon {
    color: #ffffff;
    font-size: 20px;
    background-color: #333;
    text-decoration: none;
    background: #067940;
    right: 0;
    top: 105px;
  }

  /* Style the active link (or home/logo) */
  #active {
    background-color: #067940;
    color: white;
  }

  /* Style flex values for [active page]/[hamburger icon] split */
  .inline_nav {
    display: flex;
  }

  .inline_nav > .nav {
    flex: 0 0 90%;
  }

  .inline_nav > .icon {
    flex: 0 0 10%;
  }
}
/* General Styles */
/* Style every element */
* {
  margin: 0;
  padding: 0;
  font-family: "Heebo", sans-serif;
}

a {
  text-decoration: none;
  color: black;
}

/*Style html */
html {
  height: 100%;
}

/* Style page body */
/* Style page title */
.company_header {
  background-color: #eeeeee;
  text-align: center;
  padding-top: 16px;
  padding-bottom: 16px;
  width: 100%;
}

.company_title {
  margin-bottom: 5px;
}

.company_logo {
  width: 350px;
  height: auto;
}

/* Style title year */
.year {
  font-size: 20px;
  font-style: italic;
}

/* Style page content */
.content {
  /* padding: 16px 16px; */
  /* height: 100%; */
}

/* Allows for centered views within containers */
.center {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}

#large_navigation, #small_navigation {
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 10;
}

p {
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  p {
    font-size: 18px;
  }
}

/*# sourceMappingURL=main.css.map */
