@media (max-width: 1000px) {
  nav #long_info {
    display: none;
  }

  nav #short_info {
    display: block;
  }
}

@media (min-width: 1000px) {
  nav #long_info {
    display: flex;
  }

  nav #short_info {
    display: none;
  }
}


#bg_img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  z-index: -1;
  top: 0;
  filter: brightness(50%);
}

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.btn {
  background-color: #00c23a;
  border: none;
  border-radius: 5px;
  padding: 8px;
  color: white;
  cursor: pointer;
  font-size: larger;
  margin-top: 16px;
}

.feedback {
  color: white;
  font-weight: bold;
  width: 100%;
  text-align: center;
}

hr {
  border: 1px solid white;
  width: 100%;
  margin-bottom: 32px;
}

input, select {
  font-family: sans-serif;
  font-size: 12pt;
  padding: 8px;
}

#login_redirect, #access_denied {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
}

#login_redirect a, #access_denied a {
  text-decoration: none;
  color: white;
  background-color: green;
  padding: 16px;
  border-radius: 5px;
}



nav {
  width: 100%;  
  background-color: #3c8500;
}

nav div {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  
}

nav ion-icon {
  color: white;
  margin-right: 4px;
}

nav #info {
  flex: 1;
  height: 96px;
  padding-right: 32px;
}

nav #info_menu {
  background-color: green;
  position: absolute;
  top: 120%;
  right: 0;
  padding: 16px;
  z-index: 2;
  width: clamp(128px, 70vw, 256px);
  color: white;
  display: none;
  border-radius: 10px;
  border: 4px solid lightgreen;
}

nav #info a, nav #info button, nav #info span {
  margin-right: 8px;
  color: white;
  text-decoration: none;
}

#nav_logo {
  height: 120px;
  width: auto;
  padding: 16px;
  border-radius: 25px;
}

nav #short_info {
  border: 4px solid white;
  padding: 8px;
  border-radius: 15px;
  position: relative;
}

nav #short_info {
  cursor: pointer;
}


nav #tabs {
  height: 48px;
  background-color: grey;
}

nav #topBar {
  display: flex;
  align-items: center;
}

.row {
  display: flex;
  align-items: center;
  min-height: 48px;
  justify-content: center;
}


.tab {
  background-color: #3c8500;
  height: 100%;
  display: flex;
  align-items: center;
  margin-right: 5vw;
}

.tab a {
  margin: 0;
  padding: 0px 8px;
  color: white;
  text-decoration: none;
}





