		* {
			margin: 0;
			padding: 0;
		}
		.container {
			width: 100%;
			height: 100vh;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			width: 400px;
			height: 400px;
			font-size: 3em;
			gap: 3px;
			margin: 100px auto;
		}
		.container .setTimer {
			display: flex;
			width: 100%;
			justify-content: space-evenly;
		}
		.container .setTimer input {
			width: 20%;
			height: 20px;
		}
		.container .timer {
			display: flex;
			gap: 10px;
		}
		#start {
			cursor: pointer;
			padding: 4px 10px;
			letter-spacing: 4px;
			font-weight: bold;
			color: white;
			background-color: rgba(178, 0, 0, 1.0);
			text-transform: uppercase;
			font-size: .4em;
			border-radius: 3px;
		}
		#stop {
			cursor: pointer;
			padding: 4px 10px;
			letter-spacing: 4px;
			font-weight: bold;
			color: white;
			background-color: rgba(178, 0, 0, 1.0);
			text-transform: uppercase;
			font-size: .4em;
			border-radius: 3px;
		}
		#clear {
			padding: 4px 10px;
			letter-spacing: 4px;
			font-weight: bold;
			color: white;
			background-color: rgba(178, 0, 0, 1.0);
			text-transform: uppercase;
			font-size: .4em;
			border-radius: 3px;
		}