:root {
  /** Surface colors */
  --surface-0: #131313;
  --surface-1: #282828;
  --surface-2: #3f3f3f;
  --surface-3: #585858;
  --surface-4: #717171;
  --surface-5: #8c8c8c;
  /** Primary colors */
  --primary-0: #c061cb;
  --primary-1: #c873d1;
  --primary-2: #d085d7;
  --primary-3: #d797dd;
  --primary-4: #dfa8e3;
  --primary-5: #e6bae8;
  /** Accent colors */
  --accent-0: #221b23;
  --accent-1: #373038;
  --accent-2: #4d464d;
  --accent-3: #645e64;
  --accent-4: #7c777c;
  --accent-5: #949095;
  /** Other colors */
  --white: #ffffff;
  --accent-1: #373038;
  --accent-2: #4d464d;
  --accent-3: #645e64;
  --accent-4: #7c777c;
  --accent-5: #949095;
}

@font-face {
  font-family: "Courier Prime";
  src: url("/_assets/fonts/CourierPrime/CourierPrime-Bold.eot");
  src: url("/_assets/fonts/CourierPrime/CourierPrime-Bold.eot?#iefix") format("embedded-opentype"), url("/_assets/fonts/CourierPrime/CourierPrime-Bold.woff2") format("woff2"), url("/_assets/fonts/CourierPrime/CourierPrime-Bold.woff") format("woff"), url("/_assets/fonts/CourierPrime/CourierPrime-Bold.ttf") format("truetype"), url("/_assets/fonts/CourierPrime/CourierPrime-Bold.svg#CourierPrime-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Courier Prime";
  src: url("/_assets/fonts/CourierPrime/CourierPrime-BoldItalic.eot");
  src: url("/_assets/fonts/CourierPrime/CourierPrime-BoldItalic.eot?#iefix") format("embedded-opentype"), url("/_assets/fonts/CourierPrime/CourierPrime-BoldItalic.woff2") format("woff2"), url("/_assets/fonts/CourierPrime/CourierPrime-BoldItalic.woff") format("woff"), url("/_assets/fonts/CourierPrime/CourierPrime-BoldItalic.ttf") format("truetype"), url("/_assets/fonts/CourierPrime/CourierPrime-BoldItalic.svg#CourierPrime-BoldItalic") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Courier Prime";
  src: url("/_assets/fonts/CourierPrime/CourierPrime-Regular.eot");
  src: url("/_assets/fonts/CourierPrime/CourierPrime-Regular.eot?#iefix") format("embedded-opentype"), url("/_assets/fonts/CourierPrime/CourierPrime-Regular.woff2") format("woff2"), url("/_assets/fonts/CourierPrime/CourierPrime-Regular.woff") format("woff"), url("/_assets/fonts/CourierPrime/CourierPrime-Regular.ttf") format("truetype"), url("/_assets/fonts/CourierPrime/CourierPrime-Regular.svg#CourierPrime-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Courier Prime";
  src: url("/_assets/fonts/CourierPrime/CourierPrime-Italic.eot");
  src: url("/_assets/fonts/CourierPrime/CourierPrime-Italic.eot?#iefix") format("embedded-opentype"), url("/_assets/fonts/CourierPrime/CourierPrime-Italic.woff2") format("woff2"), url("/_assets/fonts/CourierPrime/CourierPrime-Italic.woff") format("woff"), url("/_assets/fonts/CourierPrime/CourierPrime-Italic.ttf") format("truetype"), url("/_assets/fonts/CourierPrime/CourierPrime-Italic.svg#CourierPrime-Italic") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
html * {
  font-family: "Courier Prime";
  color: var(--white);
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  display: grid;
  justify-content: center; /* Center content horizontally */
  align-items: flex-start; /* Align content at the top */
}

body {
  background-color: var(--surface-0);
}

.main {
  width: 100%;
  min-width: 50px;
  max-width: 600px;
}

p, a {
  text-wrap: pretty;
}

h1, h2, h3 {
  font-family: "Courier Prime";
  color: var(--primary-3);
}

a {
  font-family: "Courier Prime";
  padding-right: 0.4em;
  padding-left: 0.4em;
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  position: relative;
}

a::before {
  content: "";
  background-color: var(--surface-1);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.4em;
  z-index: -1;
  transition: all 0.1s ease-in-out;
}

a:hover::before {
  border-radius: 0.2em;
  background-color: var(--primary-2);
  font-weight: 600;
}

footer {
  text-align: center;
}

.footer-buttons {
  margin-top: 20px;
  margin-bottom: 10px;
}

.footer-buttons img {
  margin-left: 4px;
  margin-right: 4px;
}

.footer-socials {
  margin-top: 10px;
  margin-bottom: 20px;
}

.footer-buttons a, .footer-buttons img {
  padding-right: 0px;
  padding-left: 0px;
}

.footer-buttons a::before, .footer-buttons img::before {
  background-color: var(--surface-0);
}

.footer-buttons a:hover::before, .footer-buttons img:hover::before {
  background-color: var(--surface-0);
}

.footer-socials a {
  color: var(--primary-1);
}

.footer-socials a::before {
  background-color: var(--surface-0);
}

.footer-socials a:hover::before {
  background-color: var(--primary-2);
}

.footer-socials a:hover {
  color: white;
}

/*# sourceMappingURL=main.css.map */
