/*
Valerie Liao
4.21.18
CSE154 AG

This is the css for cp0. It defines the color of the page and location of
the buttons.
*/

@import url('https://fonts.googleapis.com/css?family=Gaegu|Inconsolata|Roboto+Slab');

body {
	font-family: 'Gaegu', cursive;
	background-color: LightBlue;
	position: relative;
	text-align: center;
}

.button-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

button {
	text-align: center;
	border-radius: 50%;
	border-style: double;
	border-width: 3px;
}

.enlarge {
	font-size: 80px; 
}

.color {
	background-color: Orange;
}
