body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #FFDAB9, #FFA500, #FFC0CB);
    font-family: 'Arial', sans-serif;
}

.container {
    text-align: center;
    width: 90%; /* Responsive width */
    max-width: 600px; /* Maximum width */
}

#myCanvas {
    width: 100%; /* Full width of the container */
    height: auto; /* Maintain aspect ratio */
    background-color: #fff;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#gameTitle {
    color: #ffffff;
    text-shadow: 2px 2px 4px #000000;
    margin-bottom: 20px;
    animation: glow 1.5s ease-in-out infinite alternate;
}

#gameControls {
    color: #ffffff;
    font-size: 16px;
    margin-top: 20px;
}

/* Keyframes for title animation */
@keyframes glow {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
    }
    to {
        text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
    }
}
