/* Behemoth of a stylesheet */

@font-face {
  font-family: Quantico;
  src: url(/assets/fonts/quantico_regular.ttf);
}

:root {
  /* --dark: 100801 */
  --dark: #201811;
  --light: #d9d9d9;
  --blue: #4d7ea8;
  --gold: #f0a202;
}

body {
  background-color: var(--dark);
  color: var(--light);
  font-family: Quantico, sans-serif;
  background-image: url(/assets/images/general/arctic.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-blend-mode: multiply; 
}

.container {
  display: grid;
  grid-template-areas: 
    "header"
    "navigation"
    "content";
  grid-template-columns: 1fr;
  margin: 3rem auto;
  overflow: auto;
  width: max-content;
}

/* index */

.area {
  display: grid;
  place-items: center;
  width: 100vw;
  height: 100vh;
  overflow: auto;
}

/* Main sections of the site */

.header {
  grid-area: "header";
}

.navigation {
  grid-area: "navigation";
  justify-self: end;
}

.content {
  grid-area: "content";
}

/* Types of containers */

.left-side-container {
  display: grid;
  grid-template-areas:
    "side main";
  grid-template-columns: 1fr 3fr;
  width: 48rem; 
  gap: 0.5rem;
}

.right-side-container {
  display: grid;
  grid-template-areas:
    "main side";
  grid-template-columns: 3fr 1fr;
  width: 48rem; 
  gap: 0.5rem;
}

.twin-side-container {
  display: grid;
  grid-template-areas:
    "side main side";
  grid-template-columns: 1fr 3fr 1fr;
  width: 60rem; 
  gap: 0.5rem;
}

.mono-container {
  width: 36rem;
}

.wide-container {
  width: 60rem;
}

.side-area {
  grid-area: "side";
}

.main-area {
  grid-area: "main";
}

/* Components */

.box {
  border: 1px dotted var(--light);
  padding: 2rem;
  overflow: auto;
}

.mini-box {
  border: 1px dotted var(--light);
  padding: 1rem;
  overflow: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: QuanticoBold;
}

h1, h2 {
  margin-top: 0;
  padding: 0;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 25%;
}

h3 {
  margin-bottom: 0;
}

h4 {
  margin: 0;
  padding: 0;
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

hr {
  border: none;
  border-top: 1px dotted var(--light);
}

p {
  margin: 0.75rem 0;
  line-height: 1.25em;
}

span {
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

a {
  color: var(--light);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

@media (max-width: 768px) {
  .container {padding: 1rem 2rem;}
}

/* gay formatting */

.double-box { 
  border: 1px dotted var(--light);
  outline: 1px dotted var(--light);
  outline-offset: 4px;
  padding: 1rem;
  margin: 1.25rem 0;
  overflow: auto;
}

.twinboard {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.feed-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gridboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.sitemap-main {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.sitemap-sub {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  margin-left: 1rem;
}

img {
  display: block;
}

.div-center {
  display: flex; 
  justify-content: center;
}

.section-break-after-text {
  display: flex; 
  justify-content: center;
  margin-bottom: 1.5rem;
}

.section-break-after-img {
  display: flex; 
  justify-content: center;
  margin: 1.5rem 0;
}


progress[value] {
  /* Reset the default appearance */
  -webkit-appearance: none;
  appearance: none;
  width: 124px;
  height: 12px;
}

progress::-moz-progress-bar {
  /* style rules */
  background-color: var(--dark);
  border: 1px solid var(--light);
  border-radius: 3px;
}

progress[value]::-webkit-progress-bar {
  background-color: var(--dark);
  border: 1px solid var(--light);
  border-radius: 3px;
}

