@font-face {
    font-family: 'SourceSans3';
    font-style: normal;
    font-weight: 200;
    src: url(./font/SourceSans3-ExtraLight.ttf) format('truetype'),
}
@font-face {
    font-family: 'SourceSans3';
    font-style: normal;
    font-weight: 300;
    src: url(./font/SourceSans3-Light.ttf) format('truetype'),
}
@font-face {
    font-family: 'SourceSans3';
    font-style: normal;
    font-weight: 400;
    src: url(./font/SourceSans3-Regular.ttf) format('truetype'),
}
@font-face {
    font-family: 'SourceSans3';
    font-style: normal;
    font-weight: 500;
    src: url(./font/SourceSans3-Medium.ttf) format('truetype'),
}
@font-face {
    font-family: 'SourceSans3';
    font-style: normal;
    font-weight: 600;
    src: url(./font/SourceSans3-SemiBold.ttf) format('truetype'),
}
@font-face {
    font-family: 'SourceSans3';
    font-style: normal;
    font-weight: 700;
    src: url(./font/SourceSans3-Bold.ttf) format('truetype'),
}
@font-face {
    font-family: 'SourceSans3';
    font-style: normal;
    font-weight: 800;
    src: url(./font/SourceSans3-ExtraBold.ttf) format('truetype'),
}
@font-face {
    font-family: 'SourceSans3';
    font-style: normal;
    font-weight: 900;
    src: url(./font/SourceSans3-Black.ttf) format('truetype'),
}
* {
    box-sizing: border-box;
}

body,
html {
    width: 100dvw;
    height: 100dvh;
    margin: 0;
    font-family: 'SourceSans3';
}

.landing-page-wrap {
    width: 100%;
    height: 100%;
    background: left / cover url(./images/lmb_landingpage_background.jpg) no-repeat transparent;
    background-position-x: -120px;

    .inner-wrap {
        display: flex;
        flex-direction: column;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 85dvw;
        text-align: center;
        color: #fff;
        margin: 5px 0 0;

        h1.title {
            margin: 10px 0 30px;
            line-height: 130%;
            font-size: 25px;
        }

        .logo {
            width: 100%;
            height: auto;
            margin: 0 auto;

            img {
                max-width: 290px;
            }
        }
        .info-text {
            font-size: 18px;
            line-height: 130%;
        }
        .icon-wrap {
            margin: 40px 0 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 10px;

            .image-ios,
            .image-android {
                img {
                    width: 100%;
                    height: 100%;
                    max-height: 55px;
                }
            }
        }
    }
}

@media (min-width: 768px)
{
    .landing-page-wrap {
        background-position-x: 0px;

        .inner-wrap {
            max-width: 65dvw;
            margin: 65px 0 0;

            h1.title {
                font-size: 45px;
            }

            .info-text {
                font-size: 25px;
            }

            .logo {
                img {
                    max-width: 390px;
                }
            }

            .icon-wrap {
                flex-direction: row;
                gap: 40px;

                .image-ios,
                .image-android {
                    img {
                        width: 100%;
                        height: 100%;
                        max-height: 60px;
                    }
                }
            }
        }
    }
}