body {
  --default-backround: #ffffff;
  --header-background: #252526;
  --white: #fff;
  --header-text: #858585;
  --menu-background: #333333;
  --menu-text: #858585;
  --resizer-background: #cbd5e0;
  --iconlist-background: rgb(235, 234, 234);
  --link-color: black;
  --check-tick: black;
  --select-background: rgb(235, 234, 234);
  --text-color: black;
  --input-bordercolor: rgba(0, 0, 0, 0.1);
  --invalid: #ef8783;
  --link-underline: #97defb;
  --button-background: #4291bd;
  --danger: #b72619;
  --header-height: 40px;
}

body {
  background-color: var(--default-backround);
  margin: 0px;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  color: var(--text-color);
}

header,
header a {
  color: var(--header-text);
}

header {
  width: 100%;
  height: var(--header-height);
  background-color: var(--header-background);
  color: var(--header-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  vertical-align: middle;
  display: flex;
  flex-direction: row;
}
header div {
  margin: 5px;
  display: flex;
  align-items: center;
  flex-grow: 20;
}

a {
  color: var(--link-color);
  font-weight: bold;
  text-decoration: underline;
}

#main {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#banner {
  width: 100%;
  height: 600px;
  background-color: #858585;
  background-image: url("banner.webp");
  background-position: center;
  background-size: cover;
}

#unit-symbol-generator {
  display: flex;
  flex-direction: row;
  margin: auto;
}
#milsymbol {
  margin: auto;
  display: flex;
  flex-direction: row-reverse;
}

.quote {
  margin-top: 150px;
  margin-bottom: 150px;
  font-size: 35px;
  color: rgba(0, 0, 0, 0.2);
}

.image {
  margin: 10px;
  width: 400px;
  height: 320px;
  background-color: #858585;
}
.military {
  background-image: url("military.webp");
  background-position: center;
  background-size: cover;
}
.developer {
  background-image: url("developer.webp");
  background-position: center;
  background-size: cover;
}
.text {
  margin: 10px;
  padding: 10px;
  width: 600px;
  height: 300px;
  background-color: #ffffff;
}

.button {
  display: block;
  margin-left: auto;
  margin-right: auto;

  width: 50%;
  max-width: 300px;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 20px;
  text-align: center;

  color: var(--default-backround) !important;
  background-color: var(--button-background);
}

.logos {
  margin: auto;
  max-width: 1000px;
  margin-bottom: 150px;
}
.logos img {
  width: 150px;
  padding: 10px;
}

@media screen and (max-width: 1100px) {
  #unit-symbol-generator {
    flex-direction: column;
    max-width: 100%;
  }
  #milsymbol {
    flex-direction: column;
    max-width: 100%;
  }
  .image {
    width: 600px;
  }
  .text {
    width: 580px;
    height: auto;
  }
  .logos {
    max-width: 1200px;
  }
}

@media screen and (max-width: 640px) {
  #unit-symbol-generator {
    width: 100%;
  }
  #milsymbol {
    width: 100%;
  }
  .image {
    width: 100%;
    margin: 0px;
    margin-top: 10px;
  }
  .text {
    width: 90%;
    margin: auto;
    padding: 0;
  }
}

footer {
  height: 100px;
  background-color: var(--header-background);
  padding-top: 350px;
  font-size: 14px;
  font-style: italic;
  line-height: 25px;
  color: var(--header-text);
}
@media screen and (max-width: 1000px) {
}

@media screen and (max-width: 500px) {
  .orbat-button {
    display: none;
  }
  .icon-list {
    display: none;
  }
  .donations {
    display: none;
  }
  .resizer {
    display: none;
  }
  .container {
    flex-direction: column;
  }
  .container-left {
    width: 100%;
  }
  .radio-select-items {
    flex-wrap: wrap;
  }
  .radio-select-items div {
    flex-basis: 20%;
  }
}

@media print {
  html,
  body {
    margin: 0;
    padding: 0;
  }

  h1,
  h2,
  h3,
  h4,
  h5 {
    page-break-after: avoid;
  }

  header,
  header a {
    background-color: var(--header-text);
    color: var(--header-background);
  }
  .menu {
    display: none;
  }
  .container {
    position: relative;
    top: 0px;
    bottom: 0px;
    left: 0px;
  }
  .container-left {
    display: none;
  }
  .resizer {
    display: none;
  }
}

#help svg {
  max-width: 100%;
}
