* {
	margin: 0;
	padding: 0;
}

body {
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	flex-direction: column;
}
.container {
	width: 400px;
	height: 500px;
	background-color: #eaeaea;
	box-sizing: border-box;
	box-shadow: 0 0 20px 1px rgba(23,45,123, .5);
	display: flex;
	flex-direction: column;
	font-family: Arial, sans-serif;
	border-radius: 20px;
}
.container h1 {
	flex: .5;
	display: flex;
	justify-content: center;
	align-items: center;
	text-shadow: 0 0 8px black;
	color: #eaeaea;
}
.board {
	flex: 1.5;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 10em;
	text-transform: uppercase;
}
.score {
	flex: .5;
	display: none;
	justify-content: space-around;
	align-items: center;
}
.score div {
	padding: 4px 8px;
	border-radius: 15px;
	background-color: skyblue;
	color: #272727;
	font-weight: bold;
	border: 1px solid lightblue;
}

.newGame {
	flex: .5;
	display: flex;
	justify-content: center;
	align-items: center;
	border-top: 3px solid red;
	gap: 10px;
	flex-wrap: wrap;
}
.newGame input {
	padding: 6px 12px;
	border-radius: 10px;
	border: none;
}
.newGame input:active{
	border: 1px solid skyblue;
}
.newGame button {
	padding: 5px 12px;
	border-radius: 7px;
	background-color: skyblue;
	color: #272727;
	font-weight: bold;
	border: 1px solid lightblue;
	cursor: pointer;
}

.dance {
	position: absolute;
	animation: dancing 5s infinite linear;
	top: 0;
	left: 0;
}

@keyframes dancing {
	0%{
		margin: 0;
	}
	25% {
		margin-left: 100vw;
	}
	50% {
		margin-top: 100vh;
	}
	75% {
		margin-left: 0;
	}
	100% {
		margin-top: 0;
	}
}