body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
}

.game-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
}

.game-container div#game-container {
    width: 80%;
	height: 60px;
	font-size: 20px;
	font-weight: bold;
	color: darkred;
	text-align: left;
	user-select: none;
	padding-bottom: 20px;
	padding-top: 20px;
}

h1 {
    color: #333;
    margin-bottom: 20px;
}

input[type="number"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

#message {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #555;
}

#resetGame {
    margin-top: 15px;
    background-color: #28a745;
}

#resetGame:hover {
    background-color: #218838;
}