.debug {
    position: absolute;
    bottom: 10px;
    width: 100%;
    z-index: 99;
    text-align: center;
    background-color: aliceblue;
    display: flex;
    justify-content: space-evenly;
}

button {
    padding: 5px 10px;
    border-radius: 15px;
    background-color: rgb(106, 106, 255);
    color: aliceblue;
}

.mobile-controls {
    position: absolute;
    bottom: 10vh;
    right: 2vw;
    z-index: 999;

}

.arrow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrow-top-row {
    margin-bottom: 10px;
}

.arrow-bottom-row {
    display: flex;
    justify-content: space-between;
    width: 15vw;
}

.mobile-controls img {
    width: 4vw;
}

.enter-row {
    margin-top: 10px;
}

.enter-row img {
    width: 15vw;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Semi-transparent background */
    z-index: 9999; /* Ensure it's on top of other content */
}

.overlay-message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
}

.overlay-message p {
    color: white;
    font-size: 1.2rem;
}

.overlay-message i {
    font-size: 3em;
    color: aliceblue;
    animation: rotatePhone 3s infinite linear;
}

@keyframes rotatePhone {
    0% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(0deg);
    }
    40% {
        transform: rotate(90deg);
    }
    50% {
        transform: rotate(90deg);
    }
    60% {
        transform: rotate(90deg);
    }
    90% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0);
    }
}