 * {
    margin: 0;
    padding: 0;
}

body {
    background: white; 
    color: black;      
    font-family: Arial, sans-serif;
    text-align: center;
}

#gameArea {
    width: 100%;
    height: 1000px;    
    position: relative;
    border: 2px solid black;
    overflow: hidden;
    margin-top: 20px;
    background: white;  
}

.character {
    width: 150px;
    height: 150px;
    position: absolute;
    object-fit: contain;
    background: none; 
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}
