body{
    background-image: url("house1.png");
    background-size: 100% 100%;
    background-attachment: fixed;

}


#man{
    width:30%;
    margin-top: 19%;
    margin-left: 14%;
    animation: moveImage 5s linear infinite;
    position: absolute;

}
#thief{
    width:23%;
    margin-top: 15%;
    margin-left: 14%;
    animation: moveImage 5s linear infinite;
    position: absolute;
}

#moneyBag{
    width:13%;
    margin-top:29%;
    margin-left: 77%;
    position: absolute;
}

#cash{
    width:6%;
    margin-top: 37%;
    margin-left: 75%;
    position: absolute;
}

#coins{
    width:9%;
    margin-left: 68%;
    margin-top: 34%;
    position: absolute;
}

.playButton{
    --background-color:#005aff;
    --background-color-dark:#0028d1;

    display: inline-block;
    margin-top: 27%;
    margin-left: 63%;
    padding: 1% 5%;
    font-family: 'Boogaloo', cursive;
    font-size: 50px;
    border: none;
    outline: none;
    text-decoration: none;
    color:white;
    cursor: pointer;
    background-color: var(--background-color);
    box-shadow: 6px 6px 0 var(--background-color-dark);
    position: absolute;


}

.playButton:active{
    transform: translateX(2px) translateY(2px);
    box-shadow: 4px 4px 0 var(--background-color-dark);
}


.menuButton{
    --background-color:#005aff;
    --background-color-dark:#0028d1;

    display: inline-block;
    margin-top: 20%;
    margin-left: 60%;
    padding: 1% 5%;
    font-family: 'Boogaloo', cursive;
    font-size: 50px;
    border: none;
    outline: none;
    text-decoration: none;
    color:white;
    cursor: pointer;
    background-color: var(--background-color);
    box-shadow: 6px 6px 0 var(--background-color-dark);
    

}

.menuButton:active{
    transform: translateX(2px) translateY(2px);
    box-shadow: 4px 4px 0 var(--background-color-dark);
}


.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
}



/* Modal content */
.modal-content {
    
    padding: 20px;
    border-radius: 8px;
    width: 1000px;
    text-align: center;
    position: relative;
	margin-left:10%;
}

/* Close button */
.close-btn {
    position: absolute;
	margin-top:-10%;
    margin-left:55%;
    cursor: pointer;
    font-size: 50px;
    font-weight: bold;
    color: white;
}

.container{
    width: 80%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}

