/* Reset */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Times New Roman", Georgia, serif;
    background-color: #000;
}

/* Full-screen background image */
body {
    background-image: url("motel.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark overlay */
.overlay {
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Message container */
.message {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    color: #f0f0f0;
    letter-spacing: 0.5px;
}

/* First line */
.message h1 {
    font-size: 3rem;
    font-weight: normal;
    margin: 0;
    line-height: 1.2;
}

/* Second line */
.message h2 {
    font-size: 1.8rem;
    font-weight: normal;
    margin-top: 0.3rem;
    margin-bottom: 0;
    line-height: 1.2;
    opacity: 0.85;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .message h1 {
        font-size: 2.2rem;
    }

    .message h2 {
        font-size: 1.4rem;
    }
}

