/* Variables */

h1{
  text-align: center;
}

:root {
  --menu-width: 350px;
  --scene-width: 1400px;
  --scene-height: 400px;
  --white-color: #fff;
  --gray-color: #ffffff;
}

/* Body */
body {
  background: var(--gray-color);
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}