body {
	margin: 0;
	background-image: url('./assets/background.jpeg');
	background-color: white;
	background-repeat: no-repeat;
	background-size: cover;
}

.title {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    color: white;
    font-size: 50px;
    font-family: 'Press Start 2P', cursive;
}

.blurb {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    /* background-color: rgb(34, 34, 34); */
    background-color: black;
    /* font-family: 'Press Start 2P', cursive; */
}

.sub-title {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 10px;
    margin-bottom: 20px;
    font-family: 'Press Start 2P', cursive;
}

.container {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
}

.beatbox {
	width: 600px;
	height: 600px;
	background: #333;
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
    align-content: space-evenly;
    align-items: center;
    margin: 10px;
}

.beat {
	width: 150px;
	height: 150px;
	flex-basis: 29%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.beat .button {
	width: 120px;
	height: 120px;
	border-radius: 10px;
	border: 5px solid aqua;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: sans-serif;
	font-size: 2em;
	transition: all 0.2s;
}
