@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap");
* {
  box-sizing: border-box; }

html {
  height: 100% !important;
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  box-sizing: border-box; }

body {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  background: #0a1112;
  color: #c3e9ff;
  overflow-x: hidden; }

#root {
  width: 100%;
  height: 100%; }

.screens {
  width: 100%;
  height: 100%;
  background: #354148;
  overflow-y: auto;
  overscroll-behavior: none; }
  .screens .screen {
    position: relative;
    display: none;
    width: 100%;
    height: calc(100% + 0.5px); }
    .screens .screen.active_screen {
      display: block; }
  .screens .debug_screen {
    background: #101a1c;
    height: 100%; }
  .screens .loginScreen {
    padding: 7px; }
    .screens .loginScreen h3 {
      text-align: center; }
    .screens .loginScreen iframe {
      display: block;
      margin: 30px auto; }

.root {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center; }
  .root .roomWrapper {
    width: 430px;
    height: 430px;
    overflow: hidden;
    border: 1px solid #1e2936;
    display: flex;
    justify-content: center;
    align-items: center; }
  .root .room {
    width: 360px;
    height: 360px;
    overflow: hidden; }
  .root .roomGrid {
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image: linear-gradient(to right, #1e2936 1px, transparent 1px), linear-gradient(to bottom, #1e2936 1px, transparent 1px);
    border-right: 1px solid #1e2936;
    border-bottom: 1px solid #1e2936; }
