body {
    background-image: url("../images/FINAL.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

#person {
    position: absolute;
    width: 5vw; /* Adjust as needed, 10% of viewport width */
    max-width: 100px; /* Optional: set a max size */
}

#myButton {
    position: absolute;
    top: 80px;
    left: 40px;
    width: 400px; /* Adjust as needed */
    height: 200px; /* Adjust as needed */
    background-image: url('../images/pink-car.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    display: flex;
    align-items: center;
}

.modal-image {
    width: 50px;
    height: auto;
    margin: 0 10px;
}