body {
	height: 100vh;
	padding: 0px;
	margin: 0px;
}

.container {
	width: 100vw;
	height: 100vh;
	background-image: url("background.jpeg");
	background-size: cover;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.beatbox {
	width: 600px;
	height: 600px;
	background-color: #333333;
	border-radius: 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
}

.beat {
	color: white;
	width: 150px;
	flex-basis: 30%;
	/* this flex-basis is added after the live session and this just means that the 
	should take 30% of the parent size */
	height: 150px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.button {
	border: 1px solid green;
	width: 120px;
	height: 120px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	font-size: 2em;
	border-radius: 10px;
}

.aqua {
	border: 5px solid aqua;
}

.purple {
	border: 5px solid #ff00ff;
}

.white {
	border: 5px solid white;
}