@import url("https://fonts.googleapis.com/css?family=Khula&display=swap");

* {
	box-sizing: border-box;
}

body {
	color: #fff;
	font-family: "Khula", sans-serif;
	height: 100vh;
	overflow: hidden;
	margin: 0;
	text-align: center;
}

a {
	color: #fff;
	text-align: center;
	text-decoration: none;
	border-radius: 50%;
	padding: 20px 10px;
}

a:hover {
	color: #f8df00;
	box-shadow: 0 0 2px #f8df00, 0 0 10px #f8df00;
}

.start {
	font-size: 1.5rem;
}

h1 {
	line-height: 1.4;
	font-size: 4rem;
}

.screen {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	width: 100vw;
	transition: margin 0.5s ease-out;
	background: linear-gradient(90deg, #29323c 0%, #485563 100%);
}

.screen.up {
	margin-top: -100vh;
}

.time-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	padding: 0;
}

.time-list li {
	margin: 10px;
}

.time-btn {
	background-color: transparent;
	border: 2px solid #c0c0c0;
	color: #fff;
	cursor: pointer;
	font-family: inherit;
	padding: 0.5rem 1rem;
	font-size: 1.5rem;
	border-radius: 10px;
}

.time-btn:hover {
	border: 2px solid #f8df00;
	color: #f8df00;
	box-shadow: 0 0 2px #f8df00, 0 0 10px #f8df00;
}

.hide {
	opacity: 0;
}

.primary {
	color: #f8df00;
}

.board {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 400px;
	height: 500px;
	background: linear-gradient(118.38deg, #29323c -4.6%, #485563 200.44%);
	box-shadow: -8px -8px 20px #2a333d, 10px 7px 20px #475462;
	border-radius: 30px;
	overflow: hidden;
}

.circle {
	background: linear-gradient(140deg, #fcfa82 0%, #f8df00 40%, #3a3401 90%);
	position: absolute;
	border-radius: 50%;
	cursor: pointer;
}
