h4 {
	font-family: 'Open Sans', sans-serif;
	font-size: .7em;
}

body{
	background-color: #9f1d35;
	padding: 15vh 2vw;
	margin: auto;
}

#drumMachineContainer {
	max-width: 800px;
	/*height: 300px;*/
	background-color: white;
	border-radius: 0.25rem;
	padding: 15px;
}

.goldBorder {
	border-color: #ffd700;
	border-width: 5px;
	border-style: solid;
}

#keypad-container {

}

#keypad-container .container .row .col{
	padding: 0.5rem;
}

/* selects all div elements inside element with .col class inside element with row class, etc...*/
#keypad-container .container .row .col div {
	background-color: #9f1d35;
	width: 100%;
	height: 100%;
	border-radius: 0.25rem;
	text-align: center;
	box-shadow: 2px 2px 6px #606060; 
	cursor: pointer;
}

#controls-container {
	
	text-align: center;
	font-family: 'Caveat Brush', cursive;
}

#controls-container h2 {
	font-size: 1.75em;
	margin-top: 10px;
	margin-bottom: 5px;
}

.keypad-letters {
	color: white;
	font-family: 'Caveat Brush', cursive;
	font-size: 3.5em;

}

#power-switch {
	width: 130px;
	border-color: #ffd700;
	border-width: 5px;
	border-style: solid;
	margin: auto;
	margin-bottom: 5px;
	margin-top: 5px;
	border-radius: 0.25rem;
	cursor: pointer;
}

#power-switch .col {
	font-size: 1.25em;
}

#on-switch {
	background-color: #ffd700;
}

#sound-name-container {
	width: 200px;
	height: 45px;
	font-size: 1.75em;
	background-color: #9f1d35;
	color: white;
	border-radius: 0.25rem;
	margin: 15px auto;
}

#volume-slider {
	-webkit-appearance: none;
	width: 300px;
	height: 20px;
	background-color: #9f1d35;
	border-radius: 0.25rem;
	margin: 10px auto;
	outline: none;
}

#volume-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	height: 40px;
	width: 10px;
	background-color: #ffd700;
	cursor: pointer;
}

#bank-switch {
	width: 130px;
	border-color: #ffd700;
	border-width: 5px;
	border-style: solid;
	margin: auto;
	margin-bottom: 5px;
	margin-top: 5px;
	border-radius: 0.25rem;
	cursor: pointer;
}

#bank1-switch {
	background-color: #ffd700;
}

#signature {
	color: white;
	text-align: center;
}