body {
	background-color: #232323;
	margin: 0;
	font-family: "Montserrat", "Avenir", "Segoe UI";
	touch-action: none;	/* Only works on Chrome/Android? https://bugs.webkit.org/show_bug.cgi?id=182521*/
}

p {
	color: silver;
	text-align: center;
	font-weight: bold;
}

.square {
	width: 40%;
	height: 40%;
	background-color: purple;
	padding-bottom: 30%; /*could also use padding-top*/
	text-overflow: hidden;
	float: left;
	margin: 2% 5%;
	border-radius: 15%;
	transition: background 0.25s;
	/*To be as browser-friendly as possible, use these*/
	-webkit-transition: background 0.25s;
	-moz-transition: background 0.25s;
}

#airhorn {
	background-color: orange;
}
#vocal_airhorn {
	background-color: crimson;
}
#kick {
	background-color: blue;
}
#snare {
	background-color: skyblue;
}
#laugh {
	background-color: pink;
}

#container {
	margin: 5px auto;
	max-width: 1000px;
}

h1 {
	color: white;
	line-height: 1.1;
	font-weight: normal;
	text-align: center;
	background-color: #c0392b;
	margin: 0;
	text-transform: uppercase;
	padding: 10px 0;
}

#stripe {
	height: 30px;
	text-align: center;
	color: black;
}

.selected {
	color: white;
	background: steelblue;
}

#colorDisplay {
	font-size: 200%;
}

button {
	border: none;
	background: none;
	text-transform: uppercase;
	height: 100%;	/*100% of parent element*/
	font-weight: 700;
	color: #2ecc71;
	letter-spacing: 1px;
	font-size: inherit;
	transition: all 0.15s;
	-webkit-transition: all 0.15s;
	-moz-transition: all 0.15s;
	outline: none;
}

#message {
	display: inline-block;
	width: 20%;
	/*With these two properties, the span takes up 20% of the space*/
}

button:hover {
	color: white;
	background: steelblue;
}