/* this stylesheet MUST always be PLACED LAST! */

#lazy-block{
    z-index: 2147483647;
    width: 100dvw;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.75);
    text-shadow: 1px 1px 1px black;
    backdrop-filter: grayscale(85%);
    -webkit-backdrop-filter: grayscale(85%);
    position: fixed;
    top: 0;
    color: wheat;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 
        opacity 1s ease,
        backdrop-filter 1s ease-out
    ;
    box-sizing: border-box;
    font-size: 1.5rem;
    padding-left: 1rem;
    /* border: 1px solid gold; */
}
#lazyprep{
    font-size: 150%;
    font-family: "Satoshi-Medium";
    position: relative;
    top: -20px;
}
#lazynote {
    font-size: 60%;
}
#lazyhint {
    font-size: 50%;
    color: rosybrown;
    word-spacing: -1px;
    /* letter-spacing: -1px; */
}
.nodisplay {
    display: none
}
.admin-only{
    opacity: 0;
    pointer-events: none;
}
