* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color-scheme: light only !important; }

html {
  font-size: 62.5%;
  touch-action: manipulation;
  overscroll-behavior-y: none;
  color-scheme: light only;
  forced-color-adjust: none;
  -webkit-forced-color-adjust: none; }

body {
  overscroll-behavior-y: none;
  font-family: var(--font-2);
  font-size: var(--p1); }

.container {
  overscroll-behavior-y: none;
  min-height: calc(100vh);
  min-height: calc(100dvh);
  display: flex;
  flex-direction: column;
  position: absolute;
  opacity: 1;
  transition: opacity 0.5s ease;
  pointer-events: auto;
  width: 100%; }
  .container.hidden {
    opacity: 0;
    pointer-events: none; }
  .container > .content {
    flex: 1; }

#header {
  height: 10rem;
  background: linear-gradient(119deg, #767676 29.16%, #384057 113.01%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 80%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 1rem; }
  #header > h1 {
    text-align: center;
    font-size: 2rem;
    font-family: "Helvetica", serif;
    font-weight: 300;
    letter-spacing: 1px;
    word-spacing: 3px;
    color: white;
    text-transform: uppercase;
    line-height: 150%;
    max-width: 40rem;
    width: 90%; }

#footer {
  overflow: hidden;
  position: relative; }
  #footer picture {
    background-color: white; }
  #footer img {
    width: 100%;
    height: 100%; }

img {
  width: 100%; }

#messages {
  z-index: 100 !important; }

@media (prefers-color-scheme: dark) {
  html {
    color-scheme: light only;
    forced-color-adjust: none;
    -webkit-forced-color-adjust: none; }
  :root {
    color-scheme: light only;
    forced-color-adjust: none;
    -webkit-forced-color-adjust: none; } }
