<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#projects .container {
    width: 100%;
    min-height: 100vh;
    display: grid;
    align-items: center;
    /*justify-content: center;*/
    padding: 20px 8%;
}

#projects .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
    background-color: rgb(230, 227, 223);
}

#projects .gallery img {
    width: 100%;
    
}
#Color .container {
    width: 100%;
    min-height: 100vh;
    display: grid;
    align-items: center;
   /* justify-content: center;*/
    padding: 20px 1%;
    background-color: rgb(230, 227, 223);
}

#Color .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 20px 1%;
}

#Color .gallery img {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    
}
#Wall .container {
    width: 100%;
    min-height: 100vh;
    display: grid;
    align-items: center;
    justify-content: center;
    padding: 20px ;
    background-color: rgb(230, 227, 223);
}

#Wall .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 2fr));
    grid-gap: 30px;
}

#Wall .gallery img {
    width: 100%;
    height: 100%;
    
}
#Baluster .container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 8%;
    background-color: rgb(230, 227, 223);
}

#Baluster .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 30px;
}

#Baluster .gallery img {
    width: 100%;
    height: 100%;
}
#Paving .container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 8%;
    background-color: rgb(230, 227, 223);
}

#Paving .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}

#Paving .gallery img {
    width: 100%;
    height: 100%;
}</pre></body></html>