
:root {
    --base-color: rgb(37, 23, 6);
    --base-text-color: rgb(248, 217, 179);

    --primary-color: rgb(94, 57, 13);
}


body {
    background: var(--base-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    color: var(--base-text-color);
}

#navbar {
    width: 100%;
    display: flex;
    flex-direction: row;
    background: var(--primary-color);
    justify-content: space-between;
}

#gallery {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 1rem;
    padding-top: 3rem;
}

.gallery-photo {
    width: 24rem;
}

.gallery-photo img {
    width: 24rem;
}