/* General */
.content-wrapper {
    min-height: 100vh;
    background-image: url("img/Welt-1920x1080.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

.badge {
    width: 200px;
}

.btn-primary {
    background-color: black !important;
    padding: 15px 60px !important;
    font-size: 1.3em;
    border: none !important;
    border-radius: 0 !important;
    /*margin-bottom: 110px;*/
}

.btn-primary a {
        color: #ffffff !important;
}

.btn-primary:hover {
    background-color: #DF0819 !important;
    transition-duration: 0.4s;
}

/* Typographie */
h1 {
    font-family: "Open Sans",sans-serif;
    text-transform: uppercase !important;
    letter-spacing: 2px;
    font-weight: 700 !important;
}

p {
    font-family: "Open Sans",sans-serif;
    text-align: center;
}

/* Responsive */

/* Responsive Mobil bis width: 768px */
@media (max-width: 768px) {
    .headline {
        flex-direction: column;
    }
    .content-wrapper {
        background-position: 53%;
    }
    .logo {
        margin-top: 30px;
        margin-bottom: 10px;
        width: 200px;
    }
    h1 {
        text-align: center;
        font-size: 1.6em !important;
        padding: 0.3em 1em 0 1em;
    }
    p {
        font-size: 1.1em;
        padding: 0 1em 0 1em;
    }
    .content {
        margin-top: 1em;
    }
}

/* Responsive Tablet & Desktop ab width: 769px */
@media (min-width: 769px) {
    .content-wrapper {
        background-position: center;
    }
    .logo {
        margin-top: 60px;
        margin-bottom: 60px;
        width: 200px;
    }
    h1 {
        font-size: 1.7em !important;
    }
    .content {
        margin-top: 3rem;
    }
}

/* Responsive Desktop Large ab width: 1200px */
@media (min-width: 1200px) {
    .container {
        width: 1400px !important;
    }
    h1 {
        font-size: 3.5em;
    }
    p {
        font-size: 1.7em;
    }
}





---------------------------------------------------------------------------------------------------------------------------------------------




































