
body {
/*
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	font-family: Arial, sans-serif;
	margin: 0;
	overflow: hidden;
*/
}

section
{
	display: none;
	width: 100%;
	height: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

section.active
{
	display: flex;
}

h1, p, #score {
color: white;
text-shadow: 2px 2px 4px red;
margin: 10px;
text-align: center;
}

.button {
background-color: #ffc107;
border: none;
border-radius: 5px;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
margin: 10px;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.button:hover {
background-color: #ffa000;
}

img {
cursor: pointer;
width: 100px;
}

.banana {
position: absolute;
font-size: 50px;
top: 0;
}

#quitButton {
margin-top: 20px;
background-color: #f44336;
color: white;
}

#quitButton:hover {
background-color: #d32f2f;
}

.score
{
	background: #ffffff;
	padding: 10px;
	opacity: 0.7;
	border-radius: 16px;
}