body {
	font-size: 12px;
	font-family: sans-serif;
}

h1 {
	margin: 0.2em 0 0.4em;
	
	text-align: center;
	font-size: 5em;
}

body.mobile h1 {
	display: none;
}

.acoes {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	
	margin-bottom: 2em;
}

.acoes button {
	margin: 0.25em;
	padding: 0.5em 1em;
	
	border: 0;
	
	color: white;
	background: #999;
	
	font-size: 3em;
	cursor: pointer;
}

.acoes button:hover {
	opacity: 0.8;
}

.acoes button.main {
	background: #006A4E;
}

#container {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

.sorteio {			
	width: 8em;
	margin: 0.25em;
	padding: 0.5em;
	
	color: white;
	background: #999;
	
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	font-size: 3em;
}

.sorteio:hover {
	opacity: 0.8;
}

#bolas {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

.bola {
	width: 120px;
	height: 120px;
	line-height: 120px;
	margin: 3px;
	
	//border-radius: 50%;
	
	color: white;
	background: #999;
	
	text-align: center;
	font-weight: bold;
	font-size: 8em;
	text-shadow: 2px 2px 2px black;
	cursor: pointer;
}

.bola.small {
	width: 80px;
	height: 80px;
	line-height: 80px;
	font-size: 5em;
}

body.mobile .bola {
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 2.5em;
}

.bola:hover {
	opacity: 0.8;
}

.bola.selected {
	background: #006A4E;
}