/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* End of CSS Reset */

body {
    background-image: url(images/backgroundImage.avif);
}

.parent-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.main {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
    max-width: 1280px;
    width: 100%;
}

img.image {
    width: 100px;
    height: auto;
    grid-row: 1 / span 3; /* Span 3 rows */
    grid-column: 1;
}

header {
    font-family: 'PT Serif', serif;
    text-align: center;
    grid-row: 1;
    grid-column: 2 / span 4; /* Span 4 columns */
    color: whitesmoke;
    font-size: large;
}

.article1 {
    grid-column: 2;
    grid-row: 2;
    font-family: 'Oswald', sans-serif;
    color: whitesmoke;
}

.article2 {
    grid-column: 3;
    grid-row: 2;
    font-family: 'Open Sans', sans-serif;
    color: whitesmoke;
}

.article3 {
    grid-column: 4;
    grid-row: 2;
    font-family: 'Alumni Sans Collegiate One', sans-serif;
    color: whitesmoke;
}

.article4 {
    grid-column: 5;
    grid-row: 2;
    font-family: 'Tilt Neon', sans-serif;
    color: whitesmoke;
}

footer {
    text-align: center;
    grid-row: 3;
    grid-column: 1 / span 5; /* Span all 5 columns */
    font-family: 'Pixelify Sans', sans-serif;
    color: whitesmoke;
}
