
   div.beschreibung {
        text-align: left;
        max-width: 700px;
        min-width: 400px;
        margin: 144px 20px 44px 30px;
    }
    .beschreibung h2{
            text-align: left;
        }
            
/*photo gallery*/
        .pic {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }
            
        .slider {
            justify-self: center;
            margin-top: 30px;
            width: 600px;
            height: 400px;

            overflow: hidden;
            text-align: center;

            padding-bottom: 50px;
            min-width: 600px;
        }

            .image-container {
                width: 3600px;
                background-color: pink;
                height: 400px;
                clear: both;
                position: relative;
                -webkit-transition: left 2s;
                -moz-transition: left 2s;
                -o-transition: left 2s;
                transition: left 2s;
              }
            .slide {
                float: left;
                margin: 0px;
                padding: 0px;
                position: relative;
            }
                #slide-1:target ~ .image-container {
                left: 0px;
                    }
                #slide-2:target ~ .image-container {
                left: -600px;
                    }
                #slide-3:target ~ .image-container {
                left: -1200px;
                    }
                #slide-4:target ~ .image-container {
                left: -1800px;
                    }
                #slide-5:target ~ .image-container {
                left: -2400px;
                    }
                #slide-6:target ~ .image-container {
                left: -3000px;
                    }

            .buttons {
                position: relative;
                top: 15px;
              }
                .buttons a {
                    display: inline-block;
                    height: 15px;
                    width: 15px;
                    border-radius: 10px;
                    margin-left: 5px;
                    background-color: darkgreen;
                  }
.weiteres {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    
    margin: 30px auto;
    
}

    .weiteres div{
        max-width: 600px;
        text-align: center;
        margin: 20px;
    }
    
    .b{
        height: 70px;
        width: 400px;
    }
     


