#blocker {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    cursor: pointer;
}

#instructions {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
}

#imageLoop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20%;
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#imageLoop img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#mobileControls {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.mobileButton {
    width: 60px;
    height: 60px;
    background-color: rgba(255,255,255,0.5);
    border: none;
    border-radius: 50%;
    margin: 5px;
    font-size: 24px;
    color: #000;
}
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    position: fixed;  /* Add this */
    width: 100%;     /* Add this */
    touch-action: none; /* Add this to prevent touch scrolling */
}