.landscape-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #efefef; /* Semi-transparent black overlay */
    align-items: center;
    justify-content: center;
    display: none; /* Initially hidden */
    z-index: -1;
}

.landscape-overlay img {
    width: 60px;
    height: 60px;
}


@media screen and (orientation: landscape) {
    .landscape-overlay {
        display: flex;
        z-index: 9999;
    }
}