.container {
	max-width: 400px;
}
.totals {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.tick {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.clock {
	position: relative;
	height: 80px;
}
.clockGear {
	position: absolute;	
	font-size: 60px;
	top:10px;
}
.windClock {
	position: absolute;
	top: 40px;
	left: 30px;
	z-index: 1;
}

.buildings,
.actions {
	width:100%;
}
.building .icon,
.building .num,
.building .name {
	margin-right: 0.25em;
}
.tick button {
	width: 100%;
	padding: 0.5em;
	margin: 0.25em;
}

.state-list-container{
	margin-top:1em;
}
.state {
	border: 1px solid black;
	padding: 0.5em;
	background-color: white;
}
.state-details {
	display:flex;
	justify-content:space-between;
}
.state .state {
	margin-top: 0.5em;
}
.state.active {
	background-color: #f4f4f4;
}