@font-face {
  font-family: 'Monocraft';
  src: url('/fonts/Monocraft.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0 auto;
  font-family: 'Monocraft', sans-serif;

  width: 100vw;
  height: 100vh;

  overflow: hidden;

  user-select: none;

  background-color: black;

  max-width: 2048px;
}

#root, #ui-root {
  width: 100%;
  height: 100%;

  max-width: 2048px;
}

#root {
  position: fixed;

  z-index: 1;
}

#ui-root {
  position: fixed;

  z-index: 2;
}

.initial-loader {
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.initial-loader__title {
  color: white;

  font-size: 48px;
}