html,
body {
  scroll-behavior: smooth;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  font-family: "Raleway", sans-serif;
  gap: 10px;
  background-image: url(../assets/img/sitebackground.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.body-plain {
  background-image: none;
  background-color: black;
  padding-inline: 5rem;
}

@font-face {
  font-family: "Kablammo";
  src: url(../assets/fonts/Kablammo-Regular-VariableFont_MORF.ttf);
}

@font-face {
  font-family: "Raleway";
  src: url(../assets/fonts/Raleway-VariableFont_wght.ttf);
}

@font-face {
  font-family: "Orbitron";
  src: url(../assets/fonts/Orbitron-VariableFont_wght.ttf);
}

h1,
h2 {
  font-family: "Kablammo", sans-serif;
  text-shadow: 2px 2px 8px rgb(160, 34, 10, 0.5);
  color: #ffda3d;
}

h3 {
  font-family: "Orbitron", sans-serif;
  text-shadow: 2px 2px 8px rgb(160, 34, 10, 0.5);
  color: #ffda3d;
}

h1 {
  margin: 0;
}

h2 {
  margin: 0;
}

h3 {
  margin: 0;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: #fdea96;
}

a:hover {
  cursor: pointer;
  color: #ffda3d;
}

.external-link::after {
  content: " ↗";
  font-size: 0.85rem;
  color: inherit;
  margin-left: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.dnone {
  display: none;
}

#header {
  min-height: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0;
}

#main {
  flex-grow: 1;
  max-width: 1440px;
  width: 100%;
  padding-bottom: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  box-sizing: border-box;
}

.main-dark {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
}

.policy {
  text-align: left;
  padding-inline: 5px;
}
