body {
	background-color: black;
	color: white;
	text-align: center;
	font-size: 20px;
}
.body2 {
	background-color: black;
	color: white;
	text-align: left;
	font-size: 20px;
}

.title_container {
	color: yellow;
	text-align: center;
	font-size: 50px;
}

.choice_container {
	color: white;
	text-align: center;
	font-size: 30px;
	padding-top: 40px;
	padding-bottom: 20px;
}

.choice_button {
	color: yellow;
	font-weight: bold;
	text-decoration: none;
	background: transparent;
	font-size: 20px;
	margin-bottom: 20px;
	margin-top: 20px;
	border: 1px solid white;
	border-radius: 10px;
	width: 200px;
	padding: 10px 10px;
}
.musicButton {
	color: black;
	font-weight: bold;
	text-decoration: none;
	background: white;
	font-size: 20px;
	margin-bottom: 10px;
	border: 1px solid white;
	border-radius: 10px;
	padding: 0 10px;
}
.textButton {
	font-weight: bold;
	text-decoration: none;
	background: transparent;
	font-size: 20px;
	margin-bottom: 10px;
	border: 1px solid white;
	border-radius: 10px;
}
.textButton:hover {
	color: white;
}
.musicButton:hover {
	background-color: yellow;
}
.choice_button:hover {
	color: white;
}
.blink_me {
	animation: blinker 1s linear infinite;
}

@keyframes blinker {
	50% {
		opacity: 0;
	}
}

.count_down {
	border: 1px solid white;
	width: fit-content;
	padding: 10px;
	border-radius: 10px;
}
