@font-face {
    font-family: 'GT-Cinetype-Regular';
    src: url('fonts/GT-Cinetype-Regular.woff2') format('woff2'),
        url('fonts/GT-Cinetype-Regular.woff') format('woff');
}

:root {
    --background: #FFFFFF;
    --foreground: #000000;
}

html {
    margin: 0;
    padding: 0;
    background-color: var(--background);
    font-size: 15px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'GT-Cinetype-Regular', "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: var(--foreground);
    -webkit-text-size-adjust: none;
}

img {
    max-width: 100%;
}

a,
a:hover,
a:visited {
    color: var(--foreground);
}

.gray {
    color: #b7b7b7;
}

p {
    margin-block-start: 15px;
    margin-block-end: 15px;
}

#content {
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
}

.section {
    margin: 0 auto;
    max-width: 640px;
    overflow: hidden;
    border-bottom: 1px solid black;
}

#footer {
    border-bottom: none;
}

.image-grid {
    margin: 22px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

@media only screen and (max-width: 600px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}