:root {
  --accent: #7f1b1d;
  --accent2: rgba(127,27,29,0.85);
  --accent3: rgba(127,27,29,0.5);
  --dark-grey: #111;
  --green: #689658;
  --pink: rgb(167, 77, 79);
  --bone: #d0cbc4;
  --gold: #cbc592;
  --scarce: #30568c;
  accent-color: var(--gold);
  font-size: 14px;
  @media (min-width: 640px) {
    font-size: 16px
  }
}
* {
  scroll-behavior: smooth;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
::selection {
  background-color: var(--accent);
  color: white;
}
body {
  padding: 0.1px 1rem;
  margin: 0;
  font-family: serif;
  text-shadow: 1px 1px 2px black;
  color: #bbb;
  background: url('/WebPage-background-1.jpg') center var(--dark-grey);
  background-size: cover;
  @media (min-width: 640px) {
    padding-inline: 2rem;
  }
}
header img {
  display: block;
  width: 210px;
  height: 119px;
  margin-inline: auto;
}
.layout {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  gap: 1rem;
  max-width: 1600px;
  margin-inline: auto;
}
main, aside, article {
  border: 2px solid #222;
  padding: 0.5rem 1rem 1rem;
}
.main-bg {
  position: relative;
  overflow: hidden;
}
.main-bg, aside, article {
  background-color: rgba(0, 0, 0, 0.75);
}
main {
  position: relative;
  z-index: 1;
}
footer {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 2rem;
  text-align: center;
  opacity: 80%;
  p {
    margin: 2rem 0 3rem;
  }
}
h1 {
  font-size: 1.75rem;
  margin-top: 0.61rem;
}
h2 {
  font-size: 1.2rem;
  margin: 0.5rem 0 1rem 0;
}
* + h2, form h2 {
  margin-top: 2rem;
}
h3 {
  font-size: 1rem;
  margin: 1.25rem 0;
}
h2 {
  padding-bottom: 5px;
  border-bottom: 2px solid #444;
}
h2#equipment {
  border-bottom: 0 none;
}
h1, h2, h3, h4 {
  color: #eee;
}
p + h3, a + h3, ul + h3 {
  margin-top: 2.5rem;
}
a {
  color: white;
}
button, select, input, label {
  cursor: pointer;
}
button, input {
  font-family: serif;
}
button, input {
  background-color: var(--accent2);
  color: #eee;
  border: 1px solid var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
}
select, textarea {
  font-family: monospace;
  display: inline-block;
  margin: 0 0 .5rem 0;
  padding: 0.5rem 0.75rem;
  border: 2px solid #444;
  background-color: var(--dark-grey);
  color: white;
  border-radius: 0;
  transition: linear all .12s;
}
select:hover, textarea:hover {
  border-color: var(--accent);
}
textarea {
  width: 100%;
}
input[type=checkbox] {
  margin-right: 0.5rem;
  opacity: 0.61;
  &:checked {
    opacity: 1;
  }
}
input[type=checkbox]:checked + label {
  color: var(--gold);
}
.hero-image {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  mask-image: linear-gradient(black 80%, transparent);
}
.clear-btn, input[type=reset] {
  float: right;
  background-color: var(--dark-grey);
  color: var(--bone);
  border-color: var(--bone);
}
.fs80p {
  font-size: 80%;
}
section {
  padding: 0.1px;
}
section select {
  display: block;
  width: 90%;
}
iframe[title^=YouTube] {
  width: 100%;
  aspect-ratio: 16/9;
}
figure {
  margin: 0;
}
figure + figure {
  margin-top: 3rem;
}
figcaption {
  margin-top: 0.5rem;
}
.burn {
  color: var(--accent);
}
.event {
  color: var(--pink);
}
.scarce {
  color: var(--scarce);
}
.gold {
  color: var(--gold);
}
.fade {
  opacity: 0.75;
}
.icon {
  width: 2rem;
  height: 2rem;
  fill: whitesmoke;
}
@media (min-width: 480px) {
  #loadout {
    column-count: 2;
  }
  #loadout section {
    break-inside: avoid;
  }
  #traits {
    column-count: 2;
  }
}
@media (min-width: 640px) {
  #loadout, #traits {
    column-count: 3;
  }
}
@media (min-width: 900px) {
  #traits {
    column-count: 4;
  }
  
}
@media (min-width: 1100px) {
  #traits {
    column-count: 4;
  }
}
@media (min-width: 1600px) {
  .layout {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
  }
}
