* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Roboto, sans-serif;
	background-color: #141420;
}

#container {
	width: 30rem;
	margin: auto;
}

.stop-watch {
	border-top-left-radius: 0.5rem;
	border-top-right-radius: 0.5rem;
	position: relative;
	border: none;
	width: 8rem;
	height: 2rem;
	color: rgb(255, 92, 206);
	text-align: center;
	background-color: #272539;
}

.alarm {
	border-top-left-radius: 0.5rem;
	border-top-right-radius: 0.5rem;
	position: relative;
	border: none;
	width: 8rem;
	height: 2rem;
	color: rgb(255, 92, 206);
	text-align: center;
	background-color: #433f72;
}

#header {
	position: relative;
	background-color: #272539;
	text-align: right;
	color: white;
	border-top-right-radius: 8px;
	padding: 12px 1rem 12px 12px;
	font-size: smaller;
	font-weight: 700;
}

#main {
	position: relative;
	text-align: center;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	width: 30rem;
	height: 30rem;
	background-color: #0e0d1a;
}

#main .restart {
	border: none;
	color: rgb(255, 92, 206);
	background-color: #433f72;
	padding: 15px 32px;
	border-radius: 80px;
	margin-top: 4rem;
	margin-right: 3.5rem;
	text-align: center;
	text-decoration: none;
	/* display: inline-block; */
	font-size: 16px;
	opacity: 0.5;
}

#main .restart:hover {
	background-color: #4f4899;
}

#main .start-stop-btn {
	border: none;
	color: greenyellow;
	background-color: #433f72;
	padding: 15px 32px;
	border-radius: 80px;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
}

#main .start-stop-btn:hover {
	background-color: #4f4899;
}

#main .start-alarm {
	border: none;
	color: rgb(255, 92, 206);
	background-color: #433f72;
	padding: 15px 32px;
	border-radius: 80px;
	margin-top: 4rem;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
}

#main .start-alarm:hover {
	background-color: #4f4899;
}

#main .time {
	padding-top: 10px;
	color: rgb(255, 92, 206);
}

.colon {
	color: rgb(255, 92, 206);
	display: inline;
}

.select-hour,
.select-minute {
	width: 4rem;
	height: 2rem;
	border: none;
	outline: none;
	background-color: #0e0d1a;
	font-size: xx-large;
	color: rgb(255, 92, 206);
}

.select-am-pm {
	width: 4rem;
	height: 2rem;
	border: none;
	outline: none;
	background-color: #0e0d1a;
	font-size: x-large;
	color: rgb(255, 92, 206);
}

.select-hour {
	margin-top: 2rem;
}

.hidden {
	display: none;
}
