/*Galerie*/

html, body{
    height: 100%;
    max-width: 100%;
    margin:0;
    padding: 0;
}

body{
    display:flex;
    flex-direction: column;
    font-family: "";
}



/*main*/
    main{
        display: flex;
        justify-content: center;
        background: linear-gradient(to bottom, #ffea29 22%, #c53f48 100%);
        width: 100%;
    }

    .image-container{
    column-count: 3; 
    column-gap: 20px; 
    margin-top: 30px;
    margin-bottom: 30px;
    }
    
    .image-container img {
        max-width: 90%;
        margin-left: 25px;
        margin-right: 25px;
        margin-bottom: 30px;
        width: 80%;
        height: auto; 
        border-radius: 8px;
        display: block;
    }

    @media (max-width: 768px){

        main{
            justify-content: center;
        }

        .image-container{
            column-count: 1; 
            column-gap: 0;
            }
            
            .image-container > img {
                max-width: none;
                width: auto;
            }
            
            
    }

   
    @media (max-width: 425px){
        .image-container img {
            max-width: 300px;
            width: auto;
            margin-left: 0;
            margin-right: 0;
            padding: 0;
        }
    }
   