body {
  font-family: 'Seoge UI', sans-serif;
  background: #1d2021;
  color: #fbf1c7;
}

/* Shitty CRT effect */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background:
    linear-gradient(rgba(18,16,16,0) 50%, rgba(0,0,0,0.25) 50%),
    linear-gradient(90deg, rgba(255,0,0,0.06), rgba(0,255,0,0.02), rgba(0,0,255,0.06));
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
  z-index: 999;
}

::selection {
  background-color: #655c54;
  color: #e6d6ae;
}

a:hover {
  text-decoration: underline !important;
}

a,
a:visited {
  color: #83a598;
  text-decoration: none;
}

a:hover,
a:hover {
  color: #458588;
}

.initial {
  color: #fabd2f
}

.form-shit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}

form {
  background-color: #282828;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid #504945;
}

input[type="file"] {
  border: 2px dashed #665c54;
  border-radius: 4px;
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  color: #ebdbb2;
  background-color: #32302f;
}

input[type="file"]:hover {
  border-color: #b8bb26;
  background-color: #3c3836;
}

input[type="submit"] {
  background-color: #b8bb26;
  color: #1d2021; /* fg0 */
  border: none;
  padding: 0.75rem 1rem;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #98971a;
}

.disclaimer {
  margin: 10px 10px;
  font-size: small;
}

.download-form {
  background-color: #1d2021;
  border: none;
  width: 40%;
  padding: 10px 15px;
}

@media (max-width: 480px) {
  form {
    background-color: #1d2021;
    border: none;
    width: 90%;
    padding: 0;
  }
}
