*{
margin: 0;
padding: 0;
box-sizing: border-box;

}

img {
    max-width: 100%;
    height: auto;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}


#siteheader{

}

#sitenavigation {

}


#sitenavigation ul {
    display: flex;
    flex-wrap: wrap;
    background-color: rgb(47, 59, 124);
    }


#sitenavigation li {
    list-style-type: none;
    padding: 1rem;
    background-color: rgb(47, 59, 124);
    text-transform: uppercase;  
    border-right: 1px solid white;
    }


    #sitenavigation li:hover {
        background-color:  rgb(160, 160, 204);
        
        

    }


    #sitenavigation a {
      color: aliceblue;
    text-decoration: none;
    
        }
        

#bottombar {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;


        
}

         .image {
            width: 250px;
            height: 250px;
            box-shadow: 10px 5px 5px rgb(160, 160, 204);
            border-radius: 1rem;
        }


        #sitefooter .container {
        background-color: rgb(47, 59, 124);
        color: aliceblue;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        border-right: 1px solid white;
        padding: 1rem;
        gap: 1rem;
    
        }

        #sitefooter .container p {
            border-right: 1px solid white;
            padding-right: 1rem;
            }

        #sitefooter {
            position: fixed;
            left: 0;
            bottom: 0;
            width: 100%;
            text-align: center;
        }

        .container-UnsereLeistungen{
          display: flex;
          list-style-type: none;
          border: 1rem;
      
        }

        .container-UnsereLeistungen li{
            padding: 1rem;
            border-right: 1px solid black;
            
        }

        .article-UnsereLeistungen {
            padding: 1rem;
        }

        .team img {
           width: 300px;
           
        }

        .team  {
            margin: 1rem;
            border: 1px solid black;
            padding: 1rem;
            max-width: 400px;
            background-color: rgb(192, 180, 169);
            box-shadow: 10px 5px 5px rgb(160, 160, 204);
            border-radius: 1rem;
         }

         #teamphotos {
            display: flex;
            flex-direction: row;
            justify-content: center;
            
         }

         #impressum{
            color:rgb(201, 142, 142);

         }


@media (min-width: 600px) {

   

    #siteheader {
        display: flex;
        justify-content: center;
    }


    #sitenavigation ul {
           display: flex;
           justify-content: center;
       }
       
    
    #sitenavigation li {
        border-bottom: 0;

    }
    
    .main-container {
        display: flex;
        gap: 2rem;
    }
    
    article {
        flex-basis: 50%;
    }
    
 
}

@media (max-width: 480px) {
    #sitenavigation ul {
        display: block;
        
    }
}


  @media only screen and (orientation: landscape) {
    body {
     font-size: large;
    } 
  }
