:root {
	--title-schema: #6d5f6f;
	--body-schema: #2e3d3f;
	--main-padding: 15px;
}

body {
	max-width: 600px;
	margin: 50px auto;
	padding: 1rem;
	font-family: sans-serif;
	text-align: center;
	color: var(--body-schema);
}

.title {
	font-family: Georgia;
	font-size: 3.2rem;
	color: var(--title-schema);
	margin-bottom: 6rem;
}


button {

	border: solid;
	border-color: #6d5f6f;
	border-width: 0.4rem;
	padding: 0.75rem 1.5rem;
	margin: 0.5rem;
	width: 20rem;
	font-size: 1rem;
	cursor: pointer;
	border-radius: 999px;

	color: white;

	background: linear-gradient(202deg,
			#cccccc 0%,
			#888888 100%);

	box-shadow:
		0 4px 10px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.35);

	transition: transform 0.1s ease,
		box-shadow 0.2s ease,
		filter 0.2s ease;


}

#actions button  * {
	margin: 0;
	padding: 0.2rem;
}


button:hover {
	filter: brightness(1.08);
	transform: scale(1.02);
	box-shadow:
		0 6px 14px rgba(0, 0, 0, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

button:active {
	transform: translateY(1px) scale(0.98);
	box-shadow:
		0 2px 6px rgba(0, 0, 0, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.hidden {
	display: none;
}

#timer {
	margin: 1rem;
}

#actions,
#waiting {
	display: none;
}

audio {
	width: 80%;
	margin: 1rem;
}

footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
}