*{
	box-sizing: border-box;
	margin: 0;
	font-family: 'Fira sans' , sans-serif;
}

body{
	background-color: #293241;
	color: #fff3b0;

}

.watch{
	text-align: center;
	background-color: #e07a5f;
	width: 100%;
	max-width: 360px;
	margin: 4rem auto;
	padding: 1rem 2rem;
	border-radius: 1rem;
    
}

.time{
	font-size: 5rem;
	font-weight: 300;
	margin-bottom: 1rem;
}

.controls{
	display: flex;
	align-items: center;
	justify-content: center;
}

.controls button{
	apearance: none;
	background: none;
	border: none;
	outline: none;
	user-select: none;

	cursor: pointer;
	color: #eae2b7;
	background-color: #293241;
	margin: 0 0.5rem;
	padding: 0.5rem 2rem;
	border-radius: 0.5rem;

	transition: 0.4s;
}

button:hover{
	opacity: 0.8;
}

button:active{
	background-color: #d6ccc2;
}