/* SPDX-License-Identifier: GPL-3.0-or-later */

:root {
  color-scheme: dark;
  font-family: system-ui, sans-serif;
  background: #18181b;
  color: #efeff1;
}

html,
body,
#screen {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

#loading {
  box-sizing: border-box;
  display: grid;
  min-height: 100%;
  place-content: center;
  justify-items: center;
  text-align: center;
}

#loading[hidden],
#screen[hidden] {
  display: none;
}

.mark {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border-radius: 1rem;
  background: #9147ff;
  font-size: 2rem;
  font-weight: 800;
}

h1 {
  margin-bottom: 0;
}

p {
  color: #adadb8;
}
