body {
    margin: 0;
	padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
	background: linear-gradient(to bottom, #333, #666);
  
}
#menu {
	position: absolute;
	margin: 10px;
	z-index: 10;
}
#game-container {
    width: 100vw;
	height: 100vh;
    max-width: 100vw;
    text-align: center;
	overflow: hidden; /* Prevent scrolling   */
}

#letters-container {
	margin-top: 90%;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #ccc;
}
#keuboard-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
}

.keyboard-row {
	display: flex;
	justify-content: center;
	gap: 5px;
}

.keyboard-button {
	width: 25px;
	height: 30px;
	font-size: 10px;
	text-align: center;
	border: 1px solid black;
	border-radius: 5px;
	background-color: #f0f0f0;
}


/*
#keyboard-container {
    margin-top: 0;
}
*/
.keyboard-button {
	
    padding: 10px 15px;
    margin: 2px;
    border: none;
    background-color: #007bff;
    color: white;
    font-size: 12px;    cursor: pointer;
    border-radius: 2px;
}
/*
body {
    margin: 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #333, #666);
}
*/
.letter {
	z-index: 2;
	margin-top: 40px;
    position: absolute;
    top: 20px; /* Positioned at the top */
    font-size: 2em;
    font-weight: bold;
    color: #fff;
    text-shadow: 0px 0px 5px #00ff00;
    transform: perspective(800px) rotateX(20deg);
}

#result{
	margin-top: 40%;
	font-size: 1em;
	 color: white;
 
}
