/* Reset */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Roboto Slab', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Background */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../image/temp/desktop-view.png') no-repeat center center;
    background-size: cover;
    filter: blur(8px);
    z-index: 0;
}

/* Responsive mobile background */
@media (max-width: 600px) {
    .background {
        background: url('../image/temp/mobile-view.png') no-repeat center center;
        background-size: cover;
        filter: blur(6px);
    }
}

/* Message box */
.message-box {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    max-width: 90%;
}

.message-box h1 {
    font-size: 2rem;
    color: #333333;
    margin: 0;
    line-height: 1.4;
    text-transform: capitalize;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .message-box {
        padding: 20px 25px;
    }
    .message-box h1 {
        font-size: 1.5rem;
    }
}
