* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
}
   

/* ==== Fonts ====*/
h1 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 100px;
    text-transform: uppercase;
}

h2, h3 {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 32px;
    font-weight: 300;
    margin: 20px 0 10px;
}

footer a {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    margin: 0 10px;
    font-size: 12px;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* ==== Content Home ==== */
.hero {
    display: flex;
    height: 100vh;
    width: 100%;
    background: linear-gradient(to right top, #3E5151, #DECBA4);
}

.hero-content {
    width: 80%;
    margin: auto;
}

.socialmedia {
    display: flex;
    margin: 20px 0;
}

i {
    margin-right: 20px;
    color: #fff;
}

footer {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 30px;
    padding: 0 20px;
}


/* ==== Content Impressum ==== */
header {
    display: flex;
    position: absolute;
    top: 0;
    justify-content: flex-start;
    width: 100%;
    height: 50px;
    padding: 0 20px;
    align-items: center;
}
.hero-unterseite {
    display: flex;
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(to right top, #0F2027, #203A43, #2C5364);
    overflow: scroll;
}

.unterseite-content {
    width: 80%;
    margin: 50px auto;
}

.unterseite-content p {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.8em;
}


/* ==== Media Queries ==== */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 50px;
    }
}