@font-face {
    font-family: 'LembraThin';
    src: url('../fonts/LembraThin-Regular.woff2') format('woff2'),
         url('../fonts/LembraThin-Regular.woff') format('woff'),
         url('../fonts/LembraThin-Regular.ttf') format('truetype'),
         url('../fonts/LembraThin-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'LembraThin', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: white;
}

.container {
    text-align: center;
    max-width: 100%;
}

.logo {
    max-width: min(500px, 80vw);
    height: auto;
    margin-bottom: 2rem;
}

.maintenance-text {
    font-size: clamp(2.25rem, 7.5vw, 3.75rem);
    color: #333;
    letter-spacing: 0.05em;
}

@media (max-width: 480px) {
    body {
        padding: 1.5rem;
    }

    .logo {
        margin-bottom: 1.5rem;
    }
}
