
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

body {
    font-family: sans-serif;
    font-size: 18px;
    color: #e0e0e0;
    background: linear-gradient(0deg, rgba(24, 20, 20, 0.8) 0%, rgba(34, 30, 30, 0.8) 100%), url("media/al-brandschutz-back.jpg"), url("media/al-brandschutz-back.jpg");
    background-size: 200% auto;
    background-position: 0% 50%;
    line-height: 1.8em;
}

h1, h2, h3 {
    line-height: 1.5em;
}

h1 {
    font-size: 60px;
    color: #d37129;
    font-weight: 800;
}

h3 {
    font-size: 30px;
}

#logo {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 30px;
}

#wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#content {
    padding: 30px;
    min-width: 1000px;
    margin-left: -100px;
}


@media only screen and (max-width:768px) {

    h1 { font-size: 36px; }
    h3 { font-size: 20px; }

    #content {
        min-width: 100%;
        margin-left: 0;
    }

}