@charset "UTF-8";
body {
  margin: 0;
}

header,
section,
footer {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 750px;
  padding-left: 30px;
  padding-right: 30px;
}

header {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

h1 {
  margin: 0;
}

section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

footer {
  padding-bottom: 1rem;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li + li::before {
  content: "■";
  margin: 0 20px;
}
nav ul li a {
  background-color: none;
  color: white;
  padding: 0.5rem 0.8rem;
  transition: background-color 0.3s ease, color 0.1s ease;
  text-decoration: none;
}
nav ul li a:hover {
  background-color: white;
  color: black;
  text-decoration: underline;
}

a {
  color: white;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

button,
input[type=submit] {
  border: none;
  background-color: white;
  font-family: inherit;
  padding: 0.5rem 0.8rem;
  text-transform: inherit;
  transition: background-color 0.3s ease, color 0.1s ease;
}
button:hover,
input[type=submit]:hover {
  background-color: #111;
  color: white;
  cursor: pointer;
}
button:active,
input[type=submit]:active {
  background-color: #222;
}
button:disabled,
input[type=submit]:disabled {
  background-color: #222;
  color: gray;
  cursor: not-allowed;
}

footer::before {
  content: "";
  width: 100%;
  display: block;
  border-top: 1px solid white;
}

input[type=text], input[type=email], input[type=password], input[type=number], input[type=search], input[type=tel], input[type=url] {
  border: none;
  border-bottom: 2px solid white;
  background: transparent;
  outline: none;
  color: white;
  font-family: inherit;
  font-size: inherit;
  padding: 5px 0;
  width: 250px;
  transition: border-color 0.3s ease;
}
input[type=text]::placeholder, input[type=email]::placeholder, input[type=password]::placeholder, input[type=number]::placeholder, input[type=search]::placeholder, input[type=tel]::placeholder, input[type=url]::placeholder {
  color: gray;
}
input[type=text]:hover, input[type=text]:focus, input[type=email]:hover, input[type=email]:focus, input[type=password]:hover, input[type=password]:focus, input[type=number]:hover, input[type=number]:focus, input[type=search]:hover, input[type=search]:focus, input[type=tel]:hover, input[type=tel]:focus, input[type=url]:hover, input[type=url]:focus {
  border-color: #222;
}
input[type=text]:disabled, input[type=text]:read-only, input[type=email]:disabled, input[type=email]:read-only, input[type=password]:disabled, input[type=password]:read-only, input[type=number]:disabled, input[type=number]:read-only, input[type=search]:disabled, input[type=search]:read-only, input[type=tel]:disabled, input[type=tel]:read-only, input[type=url]:disabled, input[type=url]:read-only {
  border-color: #222;
  cursor: not-allowed;
}
input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-results-decoration {
  display: none;
}
input[type=checkbox] {
  appearance: none;
  width: 1em;
  height: 1em;
  position: relative;
  border: 0.15em solid white;
  background-color: black;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  transition: background-color 0.3s ease, border-color 0.1s ease;
}
input[type=checkbox]:hover {
  background-color: #222;
  border-color: #222;
}
input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.25em;
  height: 0.55em;
  border: solid white;
  border-width: 0 0.18em 0.18em 0;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
}
input[type=checkbox]:disabled {
  border-color: #222;
  cursor: not-allowed;
}

li:has(input[type=checkbox]) {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4em;
}

table {
  border-collapse: collapse;
}
table th,
table td {
  border: 2px solid white;
  padding: 0.5rem 0.8rem;
  text-align: left;
}
table th {
  background: #222;
}
table td {
  background: #111;
}

ul {
  list-style: square;
}

@font-face {
  font-family: "Azeret Mono";
  src: url("/ghostmoon/assets/fonts/AzeretMono-VariableFont_wght.ttf");
  font-style: normal;
}
@font-face {
  font-family: "Azeret Mono";
  src: url("/ghostmoon/assets/fonts/AzeretMono-Italic-VariableFont_wght.ttf");
  font-style: italic;
}
body {
  background-color: black;
  background-image: url("/ghostmoon/assets/img/background.webp");
  background-position: top right;
  background-size: 50%;
  background-repeat: no-repeat;
  color: white;
  font-family: "Azeret Mono", monospace;
  text-transform: lowercase;
}

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