/* base */
* {
	box-sizing: border-box;
}

body {
	color: #BFBFBF;
	text-align: center;
	background-color: #404040;
}

body {
	font-family: 'Lato', sans-serif;
	font-size: 18px;
	line-height: 1.618;
}

/* layout */
.primary-heading {
	font-weight: normal;
}

.primary-footer a {
	color: inherit;
	text-decoration: none;
	font-weight: bold;
	padding: 0.25em;
}

.primary-footer a:hover, .primary-footer a:focus {
	background-color: #333333;
}

/* modules */
.button {
	font-size: 1em;
	color: inherit;
	font-family: inherit;
	padding: 1em;
	border: none;
	background-color: transparent;
	transition: transform 0.2s;
}

.button:hover, .button:focus {
	background-color: #333333;
	cursor: pointer;
	transform: translate(0, -0.1em);
}

.button .fa {
	margin-right: 0.5em;
}

.start-button, .stop-button, .reset-button {
	font-weight: bold;
}

.plus-button, .minus-button {
	font-size: 0.8em;
}

.timer {
	margin: 3em 0;
}

.timer__name {
	font-size: 1.2em;
	font-weight: bold;
	margin: 0;
}

.timer__time {
	font-size: 6em;
	margin: 0;
}

.timers-list {
	list-style-type: none;
	padding-left: 0;
	margin-bottom: 3em;
}

.timers-list__title {
	font-size: 0.8em;
}

.timers-list__item {
	display: inline-block;
	font-size: 1.2em;
}