.level-title {
  font-family: 'Press Start 2P', cursive;
  font-size: 3rem;
  margin:  5%;
  color: #FEF2BF;
}

.container-simon {
  display: flex;
  justify-content: center;
}

.btn-simon {
  margin: 25px;
  height: 200px;
  width: 200px;
  border: 10px solid black;
  border-radius: 20%;
}

#game-over {
	background-color: red;
	opacity: 0.8;
	height: 80vh;
  text-align: center;
  }

#game-over h1 {
	margin-top: 0;
	padding-top: 60px;
}

.red-simon {
  background-color: red;
}

.green-simon {
  background-color: green;
}

.blue-simon {
  background-color: blue;
}

.yellow-simon {
  background-color: yellow;
}

.next-simon {
  margin: 25px;
  display: inline-block;
  align-items: center;
  height: 100px;
  width: 400px;
  border: 10px solid black;
  border-radius: 20%;
  background-color: purple;
}

.pressed {
  box-shadow: 0 0 20px white;
  background-color: grey;
}

#disclaimer {
  display: block;
	text-align: center;
	background-color: #011F3F;
  display: block;
  margin: auto;
  color: white;
}