body {
    background-image: url(hinterfrund3.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
#h1 , #h2 , #p1 , #ul1{
    margin-left: 50px;
    margin-right: 50px;
}
#h1 , #h2{
    color: white;
    font-family: 'Bell MT';
}
#p1 , #ul1{
    line-height: 35px
}

#ul1{
    color: white;
    font-family: 'Smooch sans'; 
    font-size: 28px;
}
#p1{
    color: white;
    font-family: 'Smooch sans';
    font-size: 28px;
}
/* Hintergrundfarbe des Headers ändern */
.mdl-layout__header {
    background-color: transparent; /* Beispiel: orange Hintergrundfarbe */
    border-bottom: 1px solid white;
}

/* Farbe des Textes im Header ändern */
.mdl-layout__header-row .mdl-layout-title {
    color: white; /* Weißer Text für den Titel */
}

/* Hover-Effekt für Links */
.mdl-navigation__link:hover {
    color:  black; /* Hover-Effekt: gleiche Farbe wie der Header */
}
.mdl-layout-title{
    font-family: 'Smooch sans';
    font-size: 28px;
}
.mdl-navigation__link{
    font-family: 'Smooch sans';
    font-size: 22px;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Höhe des gesamten Ansichtsfensters */
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Die Seite ist mindestens so hoch wie der Bildschirm */
}

main {
    flex: 1 0 auto;
    padding-bottom: 100px; /* Platz für den Footer */
}


footer {
    margin-top: auto; /* Schiebt den Footer ans Ende */
}

footer {
    margin-top: auto; /* Schiebt den Footer ans Ende */
}

footer{
    background-color: #111;
}
.footerContainer{
    width: 100%;
    padding: 70px 30px 20px ;
}
.socialIcons{
    display: flex;
    justify-content: center;
}
.socialIcons a{
    text-decoration: none;
    padding:  10px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;
}
.socialIcons a i{
    font-size: 2em;
    color: black;
    opacity: 0,9;
}
/* Hover affect on social media icon */
.socialIcons a:hover{
    background-color: #111;
    transition: 0.5s;
}
.socialIcons a:hover i{
    color: white;
    transition: 0.5s;
}
.footerNav{
    margin: 30px 0;
}
.footerNav ul{
    display: flex;
    justify-content: center;
    list-style-type: none;
}
.footerNav ul li a{
    color:white;
    margin: 20px;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.7;
    transition: 0.5s;

}
.footerNav ul li a:hover{
    opacity: 1;
}
.footerBottom{
    background-color: #000;
    padding: 20px;
    text-align: center;
}
.footerBottom p{
    color: white;
}
.designer{
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 5px;
}
@media (max-width: 700px){
    .footerNav ul{
        flex-direction: column;
    } 
    .footerNav ul li{
        width:100%;
        text-align: center;
        margin: 10px;
    }
    .socialIcons a{
        padding: 8px;
        margin: 4px;
    }

    @media (max-width: 700px) {
        .footerNav ul {
            display: flex;
            flex-direction: column;
        }
    
        .socialIcons {
            gap: 10px;
        }
    
        .footerNav ul li {
            text-align: center;
        }
    
        #p1 {
            font-size: 20px;
            line-height: 1.6;
            margin: 20px;
        }
    
        #h1, #h2, #h3, #h4 {
            font-size: 22px;
            margin: 20px;
        }
    
        .mdl-layout-title {
            font-size: 22px;
        }
    }
}
