body {
    background-image: url("/image/hintergrund.jpg");
    background-repeat: no-repeat;
    background-position: left top;
    background-attachment: fixed;
    background-size: cover;
}

h1 {
    color: #fdab47;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

p {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0px;
}

a {
    color: black;
}

a:hover {
    color: black;
    text-decoration: none;
}

.circle {
    background-color: white;
    border-radius: 25px;
    border: 2px solid #fdab47;
    box-shadow: 5px 5px 15px black;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo{
    position: absolute;
    right: 0;
}

.nav-background {
    background-color: rgba(255, 255, 255, 0.8);
    border-top: 2px solid #fdab47;
    display: -webkit-box;
}

.nav {
    position: relative;
    top: -27px;
}

.nav li {
    padding: 0 15px;
}

.nav li:hover {
    height: 110px;
}

.nav li:hover + i {
    color: #fdab47;
}

.nav li:hover + .subNav {
    display: block;
}

.nav li i {
    color: #fdab47;
}

.navbar {
    padding: 0;
}

.subNav {
    display: none;
    list-style: none;
    padding-left: 0;
    padding-top: 20px;
    position: absolute;
    width: 100%;
    left: 0;
}

.subNav li {
    list-style-image: url(data:0);
    position: fixed;
    width: 100%;
}


/*Mobile-Seite*/

.mobile-first{
    list-style: none;
    padding: 0;
    position: relative;
    top: -40px;
}

.mobile-first li{
    list-style-image: url(data:0);
}

.mobile-first span{
    color: #fdab47;
    position: absolute;
    width: 125px;
    padding-top: 5px;
    left: -20px;
    text-align: center;
    font-weight: 600;
}


.mobile-button{
    background-color: white;
    border: 2px solid #fdab47;
    box-shadow: 5px 5px 15px black;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    height: 80px;
    width: 80px;
}


.mobile {
    list-style: none;
    padding: 0;
    position: relative;
    top: -40px;
    margin: 0;
    display: none;
}

.mobile .circle{
    border-radius: 40px;
    height: 80px;
    width: 80px;
}

.mobile li {
    float: left;
    list-style-image: url(data:0);
    margin: 0 10px 20px 10px;
}

.mobile li i{
    color: #fdab47;
}

.mobile li span{
    color: #fdab47;
    font-size: 14px;
    font-weight: 600;
}

.mobile-button:hover{
    cursor: pointer;
    border: 2px solid white;
}

.placeholder{
    height: 105px;
    width: 84px;
}


@media (min-width: 0px) and (max-width: 575px) {
    .nav {
        display: none;
    }

    body{
        background-image: url("/image/hintergrund-mobil.jpg");
    }

    .logo{
        display: none;
    }
}

@media (min-width: 576px) {
    .mobile {
        display: none;
    }

    .mobile-first{
        display: none;
    }
}