   
    .container {
        position: fixed;
        bottom: 160px; 
        right: 200px; 
        transform: translate(50%, 50%);   
    }
    
    .button {
        display: inline-block;
        background-color: black;
        border-radius: 20px;
        border:none;
        color: #FFFFFF;
        text-align: center;
        font-size: 40px;
        padding: 40px;
        width: 300px;
        transition: all 0.5s;
        cursor: pointer;
        margin: 5px;
    }
    .button1 {
        display: inline-block;
        background-color: #00BFFF;
        border-radius: 20px;
        border: none;
        color: #FFFFFF;
        text-align: center;
        font-size: 20px;
        padding: 20px;
        width: 200px;
        transition: all 0.5s;
        cursor: pointer;
        margin: 5px;
        margin-left: 20px; 
    }


    .button span ,.button1 span{
        cursor: pointer;
        display: inline-block;
        position: relative;
        transition: 0.5s;
    }

    .button span:after, .button1 span:after {
        content: '\00bb';
        position: absolute;
        opacity: 0;
        top: 0;
        right: -20px;
        transition: 0.5s;
    }

    .button:hover span, .button1:hover span {
        padding-right: 25px;
    }

    .button:hover span:after, .button1:hover span:after {
        opacity: 1;
        right: 0;
    }
    
    #preGameDisplay {
        text-align: center;
        position: fixed;
        top: 50;
        left: 50;
        width: 100%;
        height: 100%;
        color: blue;
        background: url('assets/Scene.jpg') no-repeat center center;
        background-size: cover;
        font-family: Arial, sans-serif;
        margin: 0;
    padding: 0;
    }

    #gameResult {
        position: absolute;
        top: 50%;
        left: 60%;
        transform: translate(-50%, -50%);
        text-align: center;
        display: none;
        font-size: 50px; 
        font-family: 'Comic Sans MS', cursive, sans-serif;
        font-size: 2em; 
        color: #00BFFF;
        text-shadow: 2px 2px 4px #000000;
        padding: 10px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.5); 
        animation: pulse 1s infinite alternate;
    }

    @keyframes pulse {
        from {
            transform: scale(1);
        }
        to {
            transform: scale(1.1);
        }
    }

    /* Style for the main scene canvas */
    #main-canvas {
        width: 1000px; 
        height: 600px; 
    }
    


    #countdown {
        position: fixed;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        font-family: 'Comic Sans MS', cursive, sans-serif; 
        font-size: 2em; 
        color: #00BFFF; 
        text-shadow: 2px 2px 4px #000000;
        padding: 10px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.5); /* Semi-transparent background */
        animation: pulse 1s infinite alternate; 
    }
    
    @keyframes pulse {
        from {
            transform: scale(1);
        }
        to {
            transform: scale(1.1);
        }
    }

    .resultMessage {
        word-wrap: break-word;
    }
