
.baggrund {
    background-color: #F7F1E3;
    height: 100%;
    width: 100%;
}

/* main{
    margin-top: 150px;
    margin-bottom: 100px;
    background-color: #F7F1E3;
} */

#perlegalleriet-h1 {
    text-align: center;
    font-size: 38px;
    padding-top: 30px;
}

.gallary-container {
    column-count: 300px;
    column-gap: 20px;
    width:100%; 
    

}
  
.gallery-container img {
        width: 100%;
        height: 100%; 
        object-fit:cover;
        border-radius: 10px;

}
.gallery-container {
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows:repeat(3, 300px);  

    /* Det skaber en "pinterest" style galleri */
    grid-template-rows: masonry;
    grid-gap:10px; 
    width:100%; 
    max-width:960px;
    margin: auto;
    padding: 30px;
    
}
.gallery-container img {
    width:100%; 
    height:auto;  
    width: 100%;
    height: 100%; 
    object-fit:cover;
    border-radius: 10px;
    
}
 


