html {
    margin-top: 0;
    font-size: 16px;
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    min-height: 100%;
    background-color: #121e34;
}

.landing-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;

    background-image: url('/background.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #121e34;

    overflow: hidden;
}

.landing-info {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    bottom: -350px !important;

    transform: translateX(-50%) !important;

    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 0 2rem;
    z-index: 999;

    background: transparent;
}

.nadpis {
    margin-bottom: 1rem;
    text-align: center;
}

.nadpis h1 {
    font-size: 3.125rem;
    line-height: 1.1;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.kontakt {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.4;
    text-align: center;
}

.kontakt i {
    margin-right: 8px;
    color: #c32127;
    margin-bottom: 20px;
}

.kontakt a {
    transition: 300ms;
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
}

.kontakt a:hover {
    opacity: 0.8;
}

.member strong {
    text-transform: uppercase;
}

.phone {
    margin-right: 20px;
}

.phone a {
    margin-bottom: 15px;
}

.logo img {
    width: 150px;
    margin-top: 50px;
}

.logo-leaf img {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width: 1200px) {
    html {
        font-size: 80%;
    }
}

@media only screen and (max-width: 1000px) {
    html {
        font-size: 75%;
    }
}

@media only screen and (max-width: 768px) {
    html {
        font-size: 90%;
    }

    .landing-page {
        min-height: 100vh;
        min-height: 100svh;
        background-size: contain;
        background-position: center center;
    }

    .landing-info {
        position: fixed !important;
        left: 50% !important;
        right: auto !important;
        top: auto !important;
        bottom: -250px !important;

        transform: translateX(-50%) !important;

        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;

        text-align: center;
    }

    .nadpis {
        text-align: center;
        margin-bottom: 0.7rem;
    }

    .nadpis h1 {
        font-size: 2rem;
        line-height: 1.15;
    }

    .kontakt {
        font-size: 1rem;
    }

    .kontakt a {
        font-size: 1rem;
    }

    .nadpis,
    .kontakt,
    .logo-leaf {
        padding: 0 1rem;
        box-sizing: border-box;
    }

    .phone {
        margin-right: 0;
        display: block;
    }

    .kontakt a {
        display: inline-block;
    }
}

@media only screen and (max-width: 465px) {
    .landing-info {
        bottom: -250px !important;
    }

    .nadpis h1 {
        font-size: 1.7rem;
    }

    .kontakt {
        font-size: 0.95rem;
    }

    .kontakt a {
        font-size: 0.95rem;
    }

    .logo-leaf {
        padding: 0 30px;
        box-sizing: border-box;
    }

    .logo-leaf img {
        width: 90px;
    }
}

@media only screen and (max-width: 380px) {
    html {
        font-size: 80%;
    }

    .landing-info {
        bottom: -200px !important;
    }

    .logo-leaf img {
        width: 70px;
    }
}

@media only screen and (max-width: 310px) {
    html {
        font-size: 70%;
    }

    .landing-info {
        bottom: -200px !important;
    }

    .logo-leaf img {
        width: 50px;
    }
}