.body{
     width: 1536px;
    height: 100vh;

}

.game-title {
  color: #ff6600; /* orange */
}
button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #00ffd5;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    color: #000;
}

button:hover {
    background-color: #00c5a5;
}
.start {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #111; /* Dark background */
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    text-align: center;
    padding: 20px;
}