* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scrollbar-color: var(--clr1) var(--bclr3);
  scrollbar-width: var(--sl1);
}
::-webkit-scrollbar {
  width: var(--sl1);
}
::-webkit-scrollbar-track {
  background: var(--bclr3);
}
::-webkit-scrollbar-thumb {
  background: var(--clr1);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--clr2);
}
:root {
  --bclr1: #121212;
  --bclr2: #181818;
  --bclr3: #282828;
  --tclr1: rgba(255, 255, 255, 0.96);
  --tclr2: rgba(255, 255, 255, 0.67);
  --tclr3: rgba(255, 255, 255, 0.45);
  --sl1: 0.25rem;
  --sl2: 0.5rem;
  --sl3: 0.75rem;
  --ml1: 1rem;
  --ml2: 1.5rem;
  --ml3: 2rem;
  --ll1: 2.5rem;
  --ll2: 3rem;
  --ll3: 4rem;
  --clr1: #fa6a00; /*fa6a00*/
  --clr2: #faab0c; /*faab0c*/
  --clr3: #1970fa; /*1970fa*/
  --clr4: #19fa8f; /*19FA8F*/
  --clr5: #fa2a0c; /*FA2A0C*/
  --imginvert: none;
  --smallBorder: 1px solid var(--clr1);
  --border: 2px solid var(--clr1);
  --fatBorder: var(--sl1) solid var(--clr1);
  --smallBorderText: 1px solid var(--tclr1);
  --borderText: 2px solid var(--tclr1);
  --fatBorderText: var(--sl1) solid var(--tclr1);
  --shadow: var(--sl1) var(--sl1) var(--sl3) rgba(0, 0, 0, 0.3);
  --buttonWidth: 20rem;
  --borderRadius: calc(var(--buttonWidth) / 24);
  --padding: calc(var(--buttonWidth) / 24);
  --blur: 15px;
}
@font-face {
  font-family: gst;
  src: url("open-sans.ttf");
  font-display: swap;
}
@font-face {
  font-family: timer;
  src: url("ChivoMono-Regular.ttf");
  font-display: swap;
}
html {
  height: 100%;
}
body {
  font-size: 16px;
  background: var(--bclr2);
  font-family: gst, sans-serif, Verdana;
  color: var(--tclr1);
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  position: relative;
  letter-spacing: 0.5px;
  overflow-x: hidden;
  height: 100%;
}
header {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  padding: 0.4rem;
  height: var(--ll3);
  background: var(--bclr1);
  width: 100%;
  position: fixed;
  z-index: 9;
  transition: background-color 0.5s;
  flex: none;
}
#content {
  flex: 1;
  padding: var(--ll3) 0;
}
nav > * {
  margin: 0 var(--sl2) 0 0;
}
h1 {
  text-transform: uppercase;
  letter-spacing: var(--sl1);
}
h2 {
  font-weight: 400;
  margin-bottom: var(--ml1);
  text-transform: uppercase;
}
p + h2 {
  margin-top: var(--ll2);
}
a {
  text-decoration: none;
  color: var(--clr2);
}
a:hover {
  color: var(--clr1);
}
main {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
section {
  margin-top: var(--ll2);
  width: 100%;
  align-items: flex-start;
}
p {
  max-width: 75ch;
}
img {
  width: 20rem;
}
input {
  outline: none;
  border: none;
  font-family: gst, sans-serif, Verdana;
}
textarea {
  overflow: hidden;
  resize: none;
  font-family: gst, sans-serif, verdana;
  background: var(--bclr3);
  color: var(--tclr2);
  padding: var(--sl3) var(--sl3) var(--sl1);
  border: none;
  border-bottom: 2px solid var(--tclr2);
  outline: none;
  font-size: 1.2rem;
}
label {
  display: block;
  padding-top: 0.8rem;
  height: 2.8rem;
}
label input {
  width: 100%;
  height: 100%;
  background: transparent;
  font-size: 1.2rem;
  line-height: 1.2rem;
  font-family: gst, sans-serif, verdana;
  border-bottom: 2px solid var(--tclr1);
  color: var(--tclr1);
}
label .placeholder {
  transition: all 300ms;
  text-transform: uppercase;
}
label input:not(:placeholder-shown):invalid + .placeholder,
.invalid > input + .placeholder {
  font-size: 0.8rem;
  line-height: 0.8rem;
  transform: translateY(-3rem);
  color: var(--clr5);
}
label input:placeholder-shown + .placeholder {
  font-size: 1.2rem;
  line-height: 1.2rem;
  transform: translateY(-1.6rem);
  color: var(--tclr2);
}
label input:focus + .placeholder,
label input:not(:placeholder-shown):valid + .placeholder {
  font-size: 0.8rem;
  line-height: 0.8rem;
  color: var(--clr1);
  transform: translateY(-3rem);
}
label input + .placeholder:hover {
  cursor: text;
}
form {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  padding: var(--ll2) 0;
}
.half {
  width: calc(50% - (var(--ml1) / 2));
}
.full {
  width: 100%;
  margin: var(--ml1) 0;
}
form h2 {
  margin-top: var(--ml1);
}
form h2:first-child {
  margin-top: 0;
}
footer {
  background: var(--bclr1);
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: var(--ll3);
  padding: var(--ll2) 0;
  flex: none;
}
.contentWidth {
  width: 81rem;
}
.radio {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.radio > * {
  padding: var(--ml1);
  min-width: 5rem;
  margin: 0 var(--sl2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--sl2);
  border: 4px solid var(--clr2);
  cursor: pointer;
}
.radio > *:hover,
.radio > *.active {
  border: 4px solid var(--clr1);
}
.radio > *.active {
  background: var(--clr1);
}
.radio > input {
  display: none;
}
input[type="file"] {
  margin: var(--ml1);
}
input[type="file"]::file-selector-button,
button[type="submit"] {
  border: none;
  background: var(--clr2);
  padding: var(--ml1);
  outline: none;
  color: white;
  border-radius: var(--sl2);
  cursor: pointer;
}
input[type="file"]::file-selector-button:hover,
button[type="submit"]:hover {
  background: var(--clr1);
}
