
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

h1 {
    text-align: center;
}

label {
    margin-bottom: 10px;
}

#qrcode {
    margin-top: 20px;
}
 
#walkingPerson {
    position: absolute;
    width: 20px; /* Adjust the size of the person */
    height: 20px;
    background-color: red; /* Adjust the color of the person */
    border-radius: 50%; /* Make it round */ 
}