@import url('https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:ital,wght@1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');

* {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

body {
    font-family: Nunito;
    background-color: white;
    position: relative;
}

nav {
    background-color: white;
    height: 60px;
    width: 100%;
    position: fixed;
    z-index: 5;
}

nav:hover {
    box-shadow: 2px 2px 2px lightgray;
    transition: 0.8s;
}

img.logo {
    position: relative;
    line-height: 100%;
    padding-left: 5%;
    height: 100%;
}

nav ul {
    float: right;
    margin-right: 5%;

}

nav ul li {
    line-height: 60px;
    display: inline-block;
    margin: 0 40px;
}

nav ul li a {
    color: grey;
    font-size: medium;
    transition: .5s;
    position: relative;
}

.show-menu i, .hide-menu i {
    font-size: medium;
    transition: .5s;
    cursor: pointer;
    display: none;
    color: grey;
}

.show-menu {
    float: right;
}

.show-menu i {
    line-height: 100%;
}

nav ul li a:hover,
.show-menu:hover i,
.hide-menu:hover i {
    color: #404040;
    font-weight: bold;
    transition: 0.5s;
}

#check {
    position: absolute;
    visibility: hidden;
    z-index: -99;
}

.content {
    margin: 0 4px;
    padding-right: 0;
    position: relative;
    align-content: center;
}
footer {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: medium;
}

.socialMedia {
    font-size: medium;
    display: inline-block;
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.socialMedia img {
    margin-left: 2%;
    margin-right: 2%;
    width: auto;
    height: 25px;
    opacity: 50%;
}

.socialMedia img:hover {
    opacity: 100%;
    cursor: pointer;
}

.extraSeiten {
    width: 100%;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}

.extraSeiten li {
    display: inline-block;
    margin: 0 1%;
}

.extraSeiten li a {
    color: grey;
}

.extraSeiten li:hover {
    color: #404040;
    font-weight: bold;
    transition: 0.5s;
}

.copyright {
    text-align: center;
    color: grey;
    font-size: small;
}

@media screen and (max-width: 909px) {
    .show-menu i, .hide-menu i {
        display: block;
        position: absolute;
        top: 20px;
        right: 7%;
    }

    .hide-menu i {
        position: relative;
        top: -20px;
        right: -40px;
    }

    nav ul li {
        display: block;
    }

    .menu {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: white;
        left: -100%;
        top: 0;
        text-align: center;
        line-height: normal;
        transition: all .5s;
    }

    .menu a {
        display: block;
        padding: 2%;
        font-size: large;
        color: grey;
        top: 120px;
    }

    .hide-menu {
        position: absolute;
        top: 40px;
        right: 80px;
    }

    #check:checked ~ ul {
        left: 0;
    }

    .content .p1 {
        font-size: 5em;
        position: absolute;
        top: 50%;
        left: 60%;
        line-height: 1.2em;
    }

    .content .p2 {
        font-size: 5em;
        position: absolute;
        top: 50%;
        left: 60%;
        line-height: 1.2em;
    }

    .content #imgStart {
        position: relative;
        width: 100%;
        background-size: cover;
        background-position: right;
    }

    .socialMedia img {
        margin-left: 5%;
        margin-right: 5%;
    }
}
