*{
	/*default Einstellungen verändern*/
	margin: 0px;
	padding: 0px;
	box-sizing: border-box; /*padding and border are included in the width and height*/
}
/*----------------------------------------------------------*/
/*----------------Zuerst wird Handy gestylt-----------------*/


.gallery-links {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.gallery-img {
  flex-basis: 90%;
  margin: 10px;
}

.gallery-img img{
  width: 100%;
}


/*----------------------------------------------------------*/
/*--------------Ab jetzt wird Tablet gestylt----------------*/

@media only screen and (min-width:600px){
    
    .gallery-img {
    flex-basis: 20%; /*-% ist auch möglich-*/
    }
    
}

/*----------------------------------------------------------*/
/*--------------Ab jetzt wird Computer gestylt--------------*/

@media only screen and (min-width:1100px){

    .gallery-img {
    flex-basis: 10%; /*-% ist auch möglich-*/
    }
 
 
}