* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #050505;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.home {
    min-height: 100dvh;
}

.hero {
    position: relative;
    display: flex;
    min-height: 100dvh;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background-image: url("assets/bg.jpg");
    background-position: center;
    background-size: cover;
}

.hero__content {
    position: relative;
    z-index: 1;
    width: min(70vw, 574px);
    margin-left: 15%;
}

.hero__logo {
    width: 574px;
}

h1 {
    max-width: 440px;
    margin: 42px 0 50px;
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    line-height: 36px;
    white-space: pre-line;
}

.hero__download {
    display: inline-block;
}

@media (max-width: 767px) {
    .hero {
        justify-content: flex-start;
        background-image: url("assets/bg-mobile.jpg");
        background-position: center top;
    }

    .hero__content {
        display: flex;
        width: 100%;
        max-width: 390px;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        padding: 10vh 12px 0;
    }

    .hero__logo {
        width: min(358px, calc(100vw - 24px));
    }

    h1 {
        max-width: 330px;
        margin: 32px 0;
        font-size: 24px;
        font-weight: 400;
        line-height: 30px;
        text-align: center;
    }

    .hero__download img {
        width: 200px;
    }
}
