#mazeContainer {
  transition-property: opacity;
  transition-duration: 1s;
  transition-timing-function: linear;
  top: 75px;
  opacity: 0;
  display: inline-block;
  background-color: rgba(140, 92, 29, 1);
  background-image: url('maze_bg.png');
  background-size: cover;
  margin: auto;
}
#mazeContainer #mazeCanvas {
  margin: 0 auto;
  display: block;
}

input,
select {
  transition-property: background-color opacity;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.3);
  height: 45px;
  width: 150px;
  padding: 10px;
  border: none;
  border-radius: 5px;
  color: white;
  display: inline-block;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input:hover,
select:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
input:active,
select:active {
  background-color: black;
}
input:focus,
select:focus {
  outline: none;
}

.custom-select {
  display: inline-block;
}
.custom-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAh0lEQVQ4T93TMQrCUAzG8V9x8QziiYSuXdzFC7h4AcELOPQAdXYovZCHEATlgQV5GFTe1ozJlz/kS1IpjKqw3wQBVyy++JI0y1GTe7DCBbMAckeNIQKk/BanALBB+16LtnDELoMcsM/BESDlz2heDR3WePwKSLo5eoxz3z6NNcFD+vu3ij14Aqz/DxGbKB7CAAAAAElFTkSuQmCC");
  background-repeat: no-repeat;
  background-position: 125px center;
}

.subpage {
  font-family: "Segoe UI", Arial, sans-serif;
  text-align: center;
}
#menu {
  margin: auto;
  padding: 10px;
  height: 65px;
  box-sizing: border-box;
}
#menu h1 {
  margin: 0;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 3.2rem;
}
 
.border {
  border: 2px solid #60421f;
  border-radius: 0;
}

.btn-start {
  
}

.mobile-controls-container {
  position: relative;
  right: 10px;
  padding-bottom: 200px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  input, select {
    width: 120px;
  }
  #menu {
    height: auto;
  }
}
.rotate-container {
  display: none;
}
@media (max-height: 430px) and (orientation: landscape) {
  .rotate-container {
    display: block;
  }
  .game-content {
    display: none;
  }
}