html {
  background: linear-gradient(to bottom, rgb(50, 50, 50) 0%, rgb(50, 50, 50) 50%, rgb(17.25, 17.25, 17.25) 50%, rgb(17.25, 17.25, 17.25) 100%);
}

body {
  padding: 0px;
  margin: 0px;
  margin-top: 50px;
  min-height: calc(100vh - 50px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #e7dbc4;
  overflow-x: hidden;
}

input, textarea, select {
  font-size: 16px;
}

#topNavBar {
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 50px;
  display: flex;
  background-color: rgb(50, 50, 50);
  user-select: none;
  box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.3);
  z-index: 5;
}
#topNavBar li {
  display: flex;
  width: 10%;
  min-width: 120px;
}
#topNavBar li:not(#loginNavBarEntry):hover {
  background-color: rgb(70, 70, 70);
}
#topNavBar li.active {
  background-color: #004462;
  border-bottom: 5px #c01d18 solid;
}
#topNavBar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: white;
  font: bold 20px Helvetica, Arial, sans-serif;
}

#navToggle {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: rgb(50, 50, 50);
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  z-index: 6;
  align-items: center;
  justify-content: center;
}
#navToggle:hover {
  background-color: rgb(70, 70, 70);
}

#loginNavBarEntry {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
#loginNavBarEntry a {
  width: calc(100% - 40px);
  height: calc(100% - 15px);
  background-color: rgb(90, 90, 90);
  border-radius: 15px;
  border: solid rgb(90, 90, 90) 2px;
}
#loginNavBarEntry a:hover {
  background-color: rgb(228, 44.625, 39);
  border: solid #c01d18 2px;
}

.shell {
  display: flex;
  justify-content: center;
  align-items: center;
  position: static;
  margin: 0px;
  width: 100%;
  height: fit-content;
}

@media (max-width: 800px) {
  #loginBase {
    width: 100%;
    border-radius: 0px;
  }
}
.headerImage img {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  display: block;
}
.headerImage #imageOverlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 119, 123, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: inset 10px 0px 20px rgba(0, 0, 0, 0.6);
}
.headerImage #sectionTitle {
  font-family: "Graduate", serif;
  font-weight: bolder;
  font-size: clamp(22px, min(13vw, 15vh), 160px);
  color: white;
  text-shadow: 0.06em 0.06em 0px #c01d18;
  line-height: 1.1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  overflow: hidden;
  padding: 10px 20px;
  box-sizing: border-box;
}
.headerImage {
  width: 100%;
  max-height: 500px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.bodyImage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.bodyImage #imageOverlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 119, 123, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: inset 10px 0px 20px rgba(0, 0, 0, 0.6);
  max-height: 100vh;
  overflow-y: hidden;
}
.bodyImage img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 800px) {
  #navToggle {
    display: flex;
  }
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: rgb(50, 50, 50);
    z-index: 5;
    box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.3);
  }
  #topNavBar {
    top: 50px;
    height: auto;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }
  #topNavBar.open {
    max-height: 400px;
  }
  #topNavBar li {
    width: 100%;
    min-width: unset;
    height: 50px;
    border-bottom: 1px solid rgb(70, 70, 70);
  }
  #loginNavBarEntry {
    margin-left: 0;
  }
  #loginNavBarEntry a {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}
footer {
  margin-top: 20px;
  background-color: rgb(17.25, 17.25, 17.25);
  width: 100%;
  box-sizing: border-box;
  color: rgb(200, 200, 200);
  padding: 10px;
  text-align: center;
  min-height: calc(100vh - 60px);
  height: auto;
  z-index: 4;
}
footer .footerSection h3 {
  color: rgb(200, 200, 200);
  font-size: 30px;
  margin-bottom: 0px;
  margin-top: 5px;
}
footer .footerSection ul {
  background-color: rgb(17.25, 17.25, 17.25);
  padding: 10px;
}
footer .footerSection li, footer .footerSection a {
  color: white;
  list-style: none;
  margin-top: 10px;
}
footer .footerContacts {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .footerContacts li {
  display: flex;
  align-items: baseline;
  gap: 6px;
  justify-content: center;
}
footer .footerContacts .footerContactLabel {
  font-weight: bold;
  opacity: 0.75;
  white-space: nowrap;
}
footer .footerContacts .footerContactValue a {
  color: white;
  text-decoration: none;
}
footer .footerContacts .footerContactValue a:hover {
  text-decoration: underline;
}

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