html, body, canvas {
  padding: 0px;
  margin: 0px;
  font-family: sans-serif;
}

#scoreboard {
  float: left;
  clear: both;
  position: absolute;
}

body {
  width: 100%;
}

#game-canvas {
  display: block;
  margin: auto;
}

h1.title {
  display: block;
  margin: auto;
  font-size: 60px;
  font-family: sans-serif;
  text-align: center;
}

.m-background {
  background: rgba(92, 88, 88, 0.6);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.m-content {
  z-index: 2;
  position: absolute;
  top: 25%;
  left: 25%;
  width: 50%;
  background-color: white;
  padding: 3pc;
  border: 1px solid;
  border-radius: 8px;
}

.menu-button {
  float: left;
  position: absolute;
  background-color: rgb(73, 147, 50);
  left: 10px;
  top: 75px;
  border-radius: 5px;
  font-size: 20px;
  padding: 5px;
}

.button {
  display: inline-block;
  margin: 2px;
  width: 200px;
  background: rgb(73, 147, 50);
  color: white;
  border-radius: 5px;
  text-align: center;
  border-color: #3e8f3e;
  border: 1px;
  background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
  cursor: pointer;
}

.button-group {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
