body {
	background-color: rgb(25, 25, 25);
	color: white;
	font-family: Arial, Helvetica, sans-serif;
	position: relative;
}

.center {
	width: 100vw;
	height: 100vh;
	display: flex;
}

.game-container {
	margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.title {
	font-size: 30px;
	font-weight: 600;

	@media screen and (max-width: 380px) {
		font-size: 25px;
	}
}

.move-container {
	display: flex;
	gap: 10px;
}

.move-button {
	padding: 30px;
	background-color: transparent;
	border: 1px solid white;
	border-radius: 80px;
	cursor: pointer;
	transition: background-color 0.1s;

	@media screen and (max-width: 380px) {
		padding: 25px;
	}
}

.move-button:hover {
	background-color: rgb(40, 40, 40);
}

.move-button:active {
	background-color: rgba(60, 60, 60);
}

.move-icon {
	height: 50px;

	@media screen and (max-width: 380px) {
		height: 35px;
	}
}

.result {
	font-size: 20px;
	height: 22px;
}

.moves {
	height: 54px;
}

.reset-button {
	max-width: 92px;
	padding: 10px;
	border: none;
	border-radius: 20px;
	cursor: pointer;
}
