
:root {
  --color-bg: #000000;
  --color-text-main: #000000;
  --color-primary: #FFFFFF;
  --wrapper-height: 87vh;
  --image-max-width: 300px;
  --image-margin: 3rem;
  --font-family: "HK Grotesk";
  --font-family-header: "HK Grotesk";
}

* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}

@font-face {
  font-family: HK Grotesk;
  src: url("https://cdn.glitch.me/605e2a51-d45f-4d87-a285-9410ad350515%2FHKGrotesk-Regular.otf?v=1603136326027")
    format("opentype");
}
@font-face {
  font-family: HK Grotesk;
  font-weight: bold;
  src: url("https://cdn.glitch.me/605e2a51-d45f-4d87-a285-9410ad350515%2FHKGrotesk-Bold.otf?v=1603136323437")
    format("opentype");
}

.wrapper {
  min-height: var(--wrapper-height);
  display: grid;
  place-items: center;
  margin: 0 1rem;
}
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

a {
  color: #00F0FF
}
i {
  color:#FFFFFF;
}
.title {
  color: #FFFFFF;
  font-family: HK Grotesk;
  font-style: normal;
  font-weight: bold;
  font-size: 50px;
  line-height: 105%;
  margin: 0;
}
i {
  transform:scale(0.7)
}
a:active {
  transform:scale(0.7) rotate(-9999deg)
} 
a {
  transition:500ms
}
a:hover {
  transform:scale(1.3) rotate(5deg)
}

body {
  font: 16px/1.4 system-ui, sans-serif;
  padding: 2rem;
  background-color: var(--color-bg);
}
#cheatDialog {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #222; color: #fff;
  padding: 1em;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
#cheatDialog input {
  width: 200px;
  padding: .5em;
  border: none;
  border-radius: 4px;
  margin-right: .5em;
}