@font-face {
    font-family: 'Lato';
    src: url('Lato-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('Lato-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

html {
    background: #F1EEE8;
    font-size: 22px;
    font-family: 'Lato', sans-serif;
    font-weight: 100;
    line-height: 1.2;
    scroll-behavior: smooth;
}

#app {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    background-image: url(back-xs.jpg);
    background-size: cover;
    background-position: center;
}

.container {
    width: 100%;
    padding: 36% 24px;
    margin-inline: auto;
    max-width: 1200px;
}

.logo {
    display: block;
    width: 100%;
    max-width: 133px;
    margin: 0 35px 70px auto;
}

h1 {
    text-transform: uppercase;
    font-size: clamp(30px, 10vw, 70px);
    line-height: 1.1;
    margin-bottom: 40px;
}

h1 > span {
    text-transform: lowercase;
    font-size: clamp(28px, 7vw, 70px);
}

h2 {
    width: 75%;
    margin-left: auto;
    font-weight: 300;
    line-height: 1.2;
    text-align: right;
}

.text-nowrap {
    white-space: nowrap;
}

@media (max-width: 374px) {
    h2 {
        width: 275px;
    }
}

@media (min-width: 576px) {
    .logo {
        max-width: 210px;
    }

    h1 {
        line-height: 1;
        width: 100%;
    }

    #app {
        display: flex;
        flex-direction: column;
    }

    .container {
        display: flex;
        flex-direction: column;
        flex-grow: 100;
        align-items: center;
        justify-content: center;
        padding: 24px;
    }
}

@media (min-width: 992px) {
    #app {
        background-image: url(back.jpg);
    }

    .logo {
        margin: 0 auto 100px;
    }

    .container {
        max-width: calc(1024px + 48px);
    }

    h1 {
        line-height: 1.1;
        font-size: 70px;
        margin-bottom: 20px;
        padding-right: 30px;
    }

    h1 span {
        text-transform: uppercase;
        font-size: 70px;
        text-align: right;
        display: block;
        margin-left: auto;
    }

    h2 {
        font-size: 45px;
    }
}

@media (min-width: 1900px) {
    #app {
        background-image: url(back-xl.jpg);
    }

    .logo {
        max-width: 250px;
        margin: 0 auto 123px;
    }

    .container {
        max-width: calc(1214px + 48px);
    }

    h1 {
        font-size: 85px;
        margin-bottom: 40px;
        padding-right: 16px;
    }

    h1 span {
        font-size: 85px;
    }

    h2 {
        font-size: 55px;
        width: 80%;
    }
}