body {
	text-align: center;
}

#clock {
	font-size: 70px;
	font-weight: bold;
	color:goldenrod;
	margin: 30px;
}

#buttonGroup {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;

}

#buttonGroup button {
	height: 100px;
	width: 100px;
	border-radius: 50px;
	font-size: 20px;
	font-weight: bold;
	color: white;
}

button:hover {
	cursor: pointer;
	background-color: black;
}

.start {
	background-color: green;
}

.pause {
	background-color: red;
}

#split {
	background-color: orange;
}

#reset {
	background-color: teal;
}

#split.inactive, #reset.inactive {
	background-color: grey;
}

#split.inactive:hover, #reset.inactive:hover {
	cursor:not-allowed;
}

.entry {
	margin-top: 10px;
	font-size: 20px;
	color: purple;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
}

.entry div {
	display: inline-flex;
	flex-direction: row;
	justify-content: space-evenly;
}