@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css);
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji";
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
body a {
  text-decoration: none;
}
body a:hover {
  text-decoration: underline;
}
body h1, body h2, body h3, body h4 {
  margin: 0;
  color: var(--text-highlight);
}
body section {
  margin-top: 0 !important;
}
body uix-unyt-footer .tos a {
  color: var(--accent) !important;
}

.error-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100svh;
  flex-direction: column;
  text-align: center;
  width: calc(100% - 20px);
  margin: auto;
}
.error-page a {
  text-decoration: none;
}
.error-page a:hover {
  text-decoration: underline;
}
.error-page > h1 {
  margin: 0;
  font-size: 70px;
}
.error-page > span {
  font-size: x-large;
  opacity: 0.8;
}
.error-page > a {
  padding: 14px 20px;
  border: 2px solid var(--accent);
  background-color: var(--accent);
  text-decoration: none;
  transition: color 0.2s, background-color 0.2s;
  margin-top: 20px;
  color: white;
  border-radius: 10px;
}
.error-page > a:hover {
  background-color: transparent;
  color: var(--accent);
}
.error-page .grid {
  height: 120svh;
  border-radius: 0px;
  width: 100vw;
}

.grid {
  --grid-size: 48px;
  --grid-size-min: 0%;
  --grid-color: rgba(78, 78, 78, 0.1);
  --grid-color-min: transparent;
  --grid-weight: 1px;
  --grid-weight-min: 1px;
  height: 120svh;
  opacity: 0.6;
  position: fixed;
  animation: move 1.5s linear infinite !important;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, #09090b 0px 0px 80px 48px inset;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: var(--grid-size) var(--grid-size);
  background-image: linear-gradient(90deg, #8882 1px, transparent 0), linear-gradient(180deg, #8882 1px, transparent 0);
  background-position: 15px 0;
}
@keyframes move {
  0% {
    transform: translate(0);
  }
  to {
    transform: translateY(-48px);
  }
}
body[data-color-scheme=light] .grid {
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, white 0px 0px 80px 48px inset !important;
}
