#projectsTitle{
    display: flex;
    background-color: black;
    position: relative;
    z-index: -1;
    padding: 0;
    margin: 0;
    justify-content: center;
    height: 90vh;
    width: 100%;
}
#projectsTitle:before{
    content: "";
    display: block;
    position: absolute;
    background-image: url(/resources/project-background-2.jpg);
    background-size: 130%;
    background-position: 45% 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.cell {
    display: flex;
    justify-content: center;
    align-items: center;
}
.mainTitle{
    position: relative;
    z-index: 2;
    font-size: 5rem;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    text-align: center;
    color: #a6002f;
    padding: 0;
}

/* gallery for pictures!!! */
#gallerySection{
    display: flex;
    flex-direction: column;
    background-color: #0e0004;
}
#gallerySection h2{
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #a6002f;
    margin: 10px;
}
#galleryRow {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 1vh 1vw;
    width: 100%;
}
.galleryColumn {
    flex: 25vw;
    justify-content: space-evenly;
    max-width: 30vw;
    padding: 0 1vw;
}
.galleryColumn img{
    margin: 1vh 0;
    vertical-align: middle;
    width: 100%;
}
@media(max-width: 800px){
    .galleryColumn {
        flex: 90vw;
        max-width: 90vw;
    }
}

#articleSection{
    display: flex;
    flex-direction: column;
    background-color: #0e0004;
}
#articleContainer{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: nowrap;
}
#articleContainer .cell{
    width: 20vw;
    padding: 5vh 5vw;
    font-family: 'Poppins', sans-serif;
    font-size: 3em;
    color: #590019;
}
#articleSection h2{
    font-family: 'Poppins', sans-serif;
    font-size: 2em;
    color:  #a6002f;
    margin: 10px;
}
