html {
  font-family: 'Orbiter FBS Trial', sans-serif;
  margin: 0px;
  overflow-x: hidden;
}
body {
  background-color: #212121;
  background: linear-gradient(159deg, #313131 0%, #1c1c1c 100%);
  display: flex;
  flex-direction: column;
  margin: 0px;
}
.header {
  background-image: url(/assets/background_image.jpg);
  background-position-x: 50%;
  background-position-y: 20%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-basis: 30vh;
  margin-top: 0px;
  position: sticky;
  width: 100vw;
}
.header .logo {
  max-width: max(100vw, 500px);
  aspect-ratio: 320/187;
  cursor: pointer;
  display: block;
  height: 80%;
  margin: auto;
  position: relative;
  top: 10%;
  z-index: 1;
}
.header .shadow {
  background: linear-gradient(0deg, #212121 -20px, transparent 100%);
  bottom: 0px;
  display: block;
  height: 10vh;
  position: absolute;
  width: 100vw;
  z-index: 0;
}
.content {
  color: white;
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  margin: auto;
  width: 100vw;
}
.content p {
  font-size: 1.2em;
}
.text_area {
  width: 60%;
  min-width: 400px;
  margin: auto;
}
.effect_border {
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#ffffff 0 0) padding-box, linear-gradient(#ffffff 0 0);
  border-radius: 11px;
  border: 3px solid transparent;
  box-sizing: border-box;
  display: block;
  height: 100%;
  mask-composite: exclude;
  pointer-events: none;
  position: absolute;
  width: 100%;
  will-change: background;
}
.hint {
  color: white;
  display: inline-block;
  margin-bottom: 15px;
  text-align: center;
  width: 100%;
}
span a {
  color: #aaaaaa;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}
span a:hover {
  color: white;
}
label a {
  color: #aaaaaa;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}
label a:hover {
  color: white;
}
.gap_left {
  margin-left: 10px;
}
.nav_bar {
  color: #aaaaaa;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 5vh;
  width: 100%;
}
.nav_bar a {
  border-right: 3px solid #474747;
  cursor: pointer;
  padding: 10px;
}
.nav_bar a:last-child {
  border-right: none;
}
.nav_bar span {
  display: inline-block;
}
.nav_bar .hidden {
  display: none;
}
.toast_container {
  display: block;
  height: 200px;
  max-width: 300px;
  min-width: 350px;
  position: fixed;
  right: 10px;
  top: 10px;
  width: 20%;
}
.toast_container .toast {
  z-index: 1;
  background-color: #5d5d5d;
  border-radius: 5px;
  margin: 10px;
  padding: 10px;
  transition: opacity 0.2s;
}
.toast_container .toast.error {
  background-color: #731c08;
  color: white;
}
.toast_container .toast.success {
  background-color: #346922;
  color: white;
}
.toast_container .toast.toast_hide {
  opacity: 0;
}
