/* === DESKTOP ==================== */
#highlightwindow {
    z-index: 2000;
    width: 100vw;
    height: 100vh;
    background-image: url("/images/backgrounds/xmas-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: fixed;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#highlightwindow .motd {
    font-size: 60pt;
    font-weight: bold;
    z-index: 3000;
    width: 80vw;
}

/* === SMARTPHONE ==================== */
@media (max-width: 768px) {
    #highlightwindow {
        background-image: url("/images/backgrounds/xmas-1.jpg");
    }

    #highlightwindow .motd {
        font-size: 24pt;
        padding: 0 10px;
    }
}

/* === TABLET ==================== */
@media (min-width: 769px) and (max-width: 1024px) {
    #highlightwindow .motd {
        font-size: 40pt;
    }
}
