
#landscape-warning {
    position: fixed;
    width: 100svw;
    height: 100svh;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: opacity 0.5s ease-in-out;
    background-color: #00000055;
    background-filter: blur(20px);
    backdrop-filter: blur(20px);
    pointer-events: none;
}

#landscape-warning > img {
    height: 35svh;
}

#landscape-warning > p {
    color: white;
    font-family: 'PublicSans-Regular';
    padding: 3svh;
}

@media screen and (orientation: portrait) {
    #landscape-warning {
        opacity: 0;
    }
}

@media screen and (orientation: landscape) {
    #landscape-warning {
        opacity: 1;
    }
    #landscape-warning > img {
        height: 35svh;
    }
}
