:root {
    --primary: #024089;
    --text: #000000;
    --bg: #ffffff;
}

@font-face {
    font-family: "Nunito Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/de.commodis.ui.webshop/jakarta.faces.resource/faces/maintenance/fonts/NunitoSans-Regular.woff2.xhtml?ln=webshop&v=0_0_1") format("woff2");
}

@font-face {
    font-family: "Nunito Sans";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/de.commodis.ui.webshop/jakarta.faces.resource/faces/maintenance/fonts/NunitoSans-Bold.woff2.xhtml?ln=webshop&v=0_0_1") format("woff2");
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: var(--bg);
    color: var(--text);
    font-family: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 24px;
}

.page {
    max-width: 780px;
    width: 100%;
    text-align: center;
    display: grid;
    gap: 2em;
    justify-items: center;
}

.logo {
    width: 200px;
    height: 50px;
    object-fit: contain;
}

h1 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(2.5em, 3vw + 1em, 5em);
    font-weight: 700;
    line-height: 1.1;
}

.description {
    margin: 0;
    max-width: 45ch;
    font-size: clamp(1em, 1vw + 0.6em, 1.5em);
    line-height: 1.5;
}

.media-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-wrapper canvas,
.media-wrapper #lottie-container {
    width: 100%;
    height: 100%;
}

@media (width <= 640px) {
    body {
        padding: 18px;
    }

    h1 {
        font-size: clamp(2em, 7vw + 1em, 3.2em);
    }

    .description {
        font-size: clamp(0.95em, 3vw + 0.5em, 1.2em);
    }
}
