@font-face {
  font-family: 'SLEIGothicTTF';
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2104@1.0/SLEIGothicTTF.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'SLEIGothicTTF', sans-serif;
}

canvas {
  display: block;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 3vmax 3vmax;
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: flex-start;
}

header svg {
  color: white;
  height: fit-content;
  max-height: 10vmax;
}

.control {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 4vmax;
  display: flex;
  width: fit-content;
  justify-content: center;
  gap: 1vmax;
}

.control button {
  border: 1px solid #fff;
  padding: 10px 20px;
  background-color: #fff;
  color: #007bff;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 0px 4vmax 0px #007bff;
}

.control button:active {
  box-shadow: 0px 0px 0px #007bff;
  transform: translateY(4vmax);
}

.control button svg {
  width: 4vmax;
}

.menuContainer {
  position: fixed;
  top: 0;
  right: 0;
  padding: 2rem;
}