/* Remove default margin */
html,
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
section {
    margin: 0;
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    font-size: 16px;
    margin: auto;
    max-width: 1440px;
    box-sizing: border-box;
    padding: 0 96px;
    color: #FFFFFF;
}

section#header {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.header-text {
    font-family: "Passion One", sans-serif;
    font-weight: 700;
    font-size: 10rem;
    text-align: center;
    letter-spacing: 4px;
}



section.image-grid {
    --gap: 24px;
    --num-cols: 3;
    --row-height: auto;

    display: grid;
    grid-template-columns: repeat(var(--num-cols), 1fr);
    grid-auto-rows: var(--row-height);

    gap: var(--gap);

    /*margin: 64px 0; */

    margin-bottom: 128px;
}

section.image-grid>img {
    width: 100%;
    object-fit: cover;
}

section.image-grid img{
    object-fit: cover;
}

/* Grid Spans */

.project-image-grid-col-1 {
    grid-column: span 1;
}

.project-image-grid-col-2 {
    grid-column: span 2;
}

.project-image-grid-col-3 {
    grid-column: span 3;
}

.project-image-grid-col-4 {
    grid-column: span 4;
}

.project-image-grid-row-2 {
    grid-row: span 2;
}

.project-image-grid-row-3 {
    grid-row: span 3;
}





@media (max-width:1140px) {

    .header-text {
        font-size: 8rem;
    }

    section.image-grid {
        --num-cols: 2;
    }
}

@media (max-width:960px) {

    .header-text {
        font-size: 6rem;
    }

    section.image-grid {
        --num-cols: 1;
    }



}

@media (max-width:420px) {

    .header-text {
        font-size: 3rem;
    }

    section.image-grid {
        --num-cols: 1;
    }



}