@import "../fonts/droidsans_bold/stylesheet.css";
@import "../fonts/droidsans_regular/stylesheet.css";

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: 'droid_sansregular', -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6em;
    background: url("../images/roland-dostal-background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #01010B;
    padding: 60px 50px;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #01010B;
}

.content {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0 0 60px 50px;
}

h1 {
    font-size: 2.8em;
    margin: 0 0 0.08em 0;
    font-family: 'droid_sansbold', -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1.5px;
    color: #231F20;
}

h2 {
    font-size: 1em;
    font-family: 'droid_sansregular', -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    margin-left: 0.3em;
    margin-top: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.flex-container {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-item:nth-child(1) {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.mb-2 {
    margin-bottom: 0.5em;
}

@media (max-width: 480px) {
    body {
        padding: 50px 30px;
    }

    .content {
        padding: 0 0 50px 30px;
    }
}

@media (max-width: 380px) {
    h1 {
        font-size: 2.4em;
    }
}

@media (max-width: 330px) {
    body {
        font-size: 16px;
    }
    h1 {
        font-size: 2.2em;
    }
}