@font-face {
  font-family: 'Victor Mono';
  src: url('fonts/VictorMono-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Victor Mono';
  src: url('fonts/VictorMono-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Victor Mono';
  src: url('fonts/VictorMono-Oblique.woff2') format('woff2');
  font-weight: 400;
  font-style: oblique;
}
@font-face {
  font-family: 'Victor Mono';
  src: url('fonts/VictorMono-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Victor Mono';
  src: url('fonts/VictorMono-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Victor Mono';
  src: url('fonts/VictorMono-BoldOblique.woff2') format('woff2');
  font-weight: 700;
  font-style: oblique;
}
@font-face {
  font-family: 'Victor Mono';
  src: url('fonts/VictorMono-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Victor Mono';
  src: url('fonts/VictorMono-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Victor Mono';
  src: url('fonts/VictorMono-LightOblique.woff2') format('woff2');
  font-weight: 300;
  font-style: oblique;
}
@font-face {
  font-family: 'axotrel';
  src: url('fonts/axotrel.otf.woff2') format('woff2');
}
@font-face {
  font-family: 'vagra';
  src: url('fonts/vagra-pixel-large.woff2') format('woff2');
}

:root {
  --accent: #8C0052;
  --primary: #FAFAFA;
  --bg-primary: #0A0A0A;
}

body {
  font-family: "Victor Mono", monospace; 
  font-weight: 400;
  font-style: normal;
  background-color: black;
  color: var(--primary);
  margin: 0;
  padding: 20px;
  min-height: 100vh;
}

.light {
  font-weight: lighter;
}

.oblique {
  font-style: oblique;
}

.regular {
  font-style: normal;
}

.title {
  box-sizing: border-box;
  width: 90%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 2%;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding: 10px;
  border: 5px double var(--primary);
}

.content {
  box-sizing: border-box;
  width: 90%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  border: 5px double var(--primary);
  padding: 20px;
  border-radius: 2px;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/q.jpg');
  background-size: cover;
  filter: brightness(0.2);
  z-index: -1;
}

h1 {
  color: var(--primary);
  font-weight: bold;
}

.title h1 {
  margin-top: 2px;
  margin-bottom: 2px;
  padding-bottom: 2px;
  font-size: 50px;
}

p, small, a:hover {
  color: var(--primary);
}

a {
  color: var(--accent);
}

.c {
  align-content: center;
  align-self: center;
  text-align: center;
}

.axf {
  font-family: 'axotrel', sans-serif;
}

.vxf {
  font-family: 'vagra', sans-serif;
}

.nm {
  color: var(--accent);
}

.nmh {
  color: var(--accent);
  background-color: var(--bg-primary);
  padding-left: 2px;
  padding-right: 4px;
  font-weight: bold;
}

.hlogo {
  display: inline-block;
  width: 75px;
  height: 75px;
  vertical-align: -0.25em;
  background-image: url("img/xyzblackfill.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.logo {
  display: block;
  width: 75px;
  height: 75px;
}

.title-content {
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title-content small {
  font-size: small;
  align-self: flex-start;
  font-style: oblique;
}

form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

label {
  display: block;
  color: var(--primary);
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: 'Victor Mono', monospace;
  padding: 10px;
  font-size: 16px;
  box-sizing: border-box;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 4px 4px 0px var(--accent);
}

.radio-group {
  display: flex;
  gap: 15px;
  align-items: center;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

input[type="radio"], input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border: 2px solid var(--primary);
  background: transparent;
  cursor: pointer;
}

input[type="radio"]:checked, input[type="checkbox"]:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

button[type="submit"] {
  background-color: var(--primary);
  color: var(--bg-primary);
  border: none;
  padding: 15px;
  font-family: 'VictorMono' monospace;
  font-size: 24px;
  cursor: pointer;
  margin-top: 10px;
}

button[type="submit"]:hover {
  background-color: var(--accent);
  color: var(--primary);
}

.btn {
  max-height: 32px;
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}

.hidden {
  display: none !important;
}

.join-row {
  display: flex;
  gap: 10px;
  height: 45px;
}

.join-row input {
  height: 100%;
  box-sizing: border-box;
  margin: 0;
  flex-grow: 1; 
}

.join-row button {
  height: 100%;
  min-width: 100px;
  box-sizing: border-box;
  margin: 0;
  padding: 0 20px;
  width: auto;

  font-size: 20px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  border: 2px solid var(--primary); 
  background: var(--primary);
  color: var(--bg-primary);
}

.join-row button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

.b {
  border-color: var(--primary);
  padding: 2px 5px;
  border-radius: 3px;
  border-width: 2px;
  border-style: solid;
}

@media (max-width: 412px) {
  .title h1 {
    font-size: 38px;
  }

  .hlogo {
    width: 58px;
    height: 58px;
  }

  p, small {
    font-size: 14px;
  }

  .sm {
    font-size: xx-small;
  }
}