body {
  background-color: #0a0f0f;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  display: flex;
}

canvas {
  flex-shrink: 0;
  position: absolute;
  top: calc(50vh - 320px);
  left: calc(50vw - 240px);
}

body > div {
  width: 480px;
  position: absolute;
  top: calc(50vh - 320px);
  left: calc(50vw - 240px);
  z-index: 10;
}

form {
  margin-top: 80px;
  display: flex;
}

.playerInput {
  border: none;
  padding: 5px 10px;
  z-index: 100;
  font-family: 'bookman';
  font-weight: 600;
  color: #426e5d;
}

.startBtn {
  border: none;
  box-sizing: border-box;
  height: 26px;  
  font-style: 'bookman';
  background-color: #20283d;
  color: #ffffff;
  cursor: pointer;
}

.footer {
  position: absolute;
  top: calc(100vh - 40px);
  left: 0;
  height: 40px;
  width: 100vw;
  background-color: #272c38;
  opacity: 0.7;
}

.footer a {
  color: #e7e7be;
  text-decoration: underline 2px #426e5d;
  display: inline-block;
  margin: 0 3px;
}

.footer ul {
  display: flex;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-content: center;
}

.footer li {
  font-size: 0.9rem;
  list-style: none;
  display: flex;
  align-items: center;
  color: #426e5d;
}