* {
  margin: 0;
  user-select: none;
}

body{
  margin: 0;
  padding: 0;
  background-color: grey;
  overflow-x: auto;
  overflow-y: auto;
}

.menuItem {
  z-index: 1;
  font-family: sans-serif;
  font-size: 15px;
  color: #ffffff;
  padding: 10px;
}

.slider {
  z-index: 1;
  font-family: sans-serif;
  font-size: 15px;
  color: #ffffff;
}

#title {
  position: absolute;
  min-width: 50%;
  font-size: 70px;
  font-family: sans-serif;
  color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#menu {
  z-index: 1;
  position: absolute;
  width: 270px;
  padding-bottom: 10px;
  padding-right: 10px;
  justify-content: left;
  background-color: rgba(0, 0, 0, 0.288);
}

#debugMenu {
  z-index: 1;
  position: absolute;
  width: 100px;
  padding-bottom: 10px;
  padding-left: 10px;
  background-color: rgba(0, 0, 0, 0.288);
  right: 0;
  display: inline-block;
}

.debugMenuItem {
  z-index: 1;
  font-family: sans-serif;
  font-size: 10px;
  color: #ffffff;
  padding: 5px;
  right: 0;
}

#dropDownContent {
  display: none;
  position: relative;
  color: white;
}

#debugMenu:hover #dropDownContent {
  display: block;
}

#canvas {
  position: absolute;
}

#homebutton {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  font-family: sans-serif;
  color: white;
}