html {
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  line-height: 1.5em;
}

a {
  color: #d0021b;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.table-scroll {
  overflow-x: scroll;
}

#top-banner {
  padding: 20px;
  color: #eee;
  background-color: #192952;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

#site-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

#site-header img {
  width: 50px;
  height: 50px;
}

#title {
  font-family: "Rokkitt", serif;
  font-size: 48px;
}

#search {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#search-box {
  width: 50%;
  padding: 10px;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
}

#search-button {
  padding: 10px;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  text-shadow: none;
  color: #000;
}

input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

#site-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

#site-menu a {
  color: #eee;
}

.site-menu-item img {
  width: 50px;
  height: 50px;
}

.hidden {
  display: none !important;
}

:root {
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  body {
    color: #888;
  }
  a {
    color: #76020f;
  }
  #top-banner {
    color: #ccc;
  }
  #search-button {
    background-color: #333;
    border: 1px solid #5c5c5c;
  }
  #site-menu a {
    color: #ccc;
  }
}
@media screen and (max-width: 767px) {
  #site-menu {
    width: 100%;
    justify-content: space-between;
  }
  #member-logo {
    position: absolute;
    top: 20px;
    right: 20px;
  }
}
@media screen and (max-width: 1023px) {
  #top-banner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }
  #site-header img {
    width: 40px;
    height: 40px;
  }
  #title {
    font-size: 40px;
  }
  #search {
    width: 100%;
    justify-content: flex-start;
  }
  #search-box {
    flex-grow: 1;
  }
  .site-menu-item img {
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #site-menu {
    position: absolute;
    top: 20px;
    right: 20px;
  }
}/*# sourceMappingURL=site.css.map */