@charset "UTF-8";

/* colors */
:root {
  --default-color: #dddddd7f;
  --attention-color: #e7e7bbee;
}

:root {
  line-height: 100%;
  font-family: "Asimovian", sans-serif;
  font-size: 2vi;
  font-weight: 400;
  font-style: normal;
  user-select: none;
}
:root[data-theme="light"] {
  --background-color: #ffffff;
  --text-color: var(--default-color);
}
:root[data-theme="dark"] {
  --background-color: var(--default-color);
  --text-color: #ffffff;
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

body {
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  box-shadow: inset 0 0.6vh 0 0 var(--attention-color), inset 0 -0.6vh 0 0 var(--attention-color);
}
