#boot {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  /* This is gonna be in front of a lot of other content */
  position: absolute;
  top: 0;
  left: 0;

  height: 100vh;
  width: 100vw;

  background-color: #000;
  color: #fff;

  z-index: 25;
  cursor: wait;
}

#boot .container {
  width: 100%;
  height: 90%;
}

#boot_loading {
  width: 8vw;
}

#boot_logo {
  margin-bottom: 20px;
  width: 15vw;
}

#boot_middle {
  height: 20%;
  justify-content: center;

  font-size: 40px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

#boot_footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  width: 98%;
  margin: 20px;

  font-family: 'ClaCon2', 'Consolas', 'Courier New', Courier, monospace;
}

#boot_footer_right {
  text-align: right;
}