/* 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;
}

/* CSS Reset End */

/* Start of Nav */

#navbar ul{
    display: flex;
    list-style-type: none; /* This is to get rid of the bullet points */
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
}

#navbar li{
    width: 200px;
    font-size: 20px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

#navbar a{
    display: block;
    padding: 5px 0;
}

#navbar a:link, a:visited{
    color: black;
    text-decoration: none;
}

#navbar a:hover{
    background-color: whitesmoke;
    text-decoration: none;
}

/* End of Nav */
/* Start of Link CSS */



/* End of Link CSS */
/* Start of Paragraph CSS */
/* Start of Header CSS */

.Header1{
    background-color: #00A699;
    color: whitesmoke;
/*  box-shadow: dimgray 3px 7px 11px; Box Shadow */ 
}

.center-children{
    display: flex;
    align-items: center;
    justify-content: center;
}

header h1{
    text-align: center;
    color: whitesmoke;
    font-size: 35px;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    padding: 15px;
}

/* End of Header CSS */

body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
}

img {
    width: 10%;
}

p {
    grid-row: 2;
    grid-column: 2/4;
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    font-family: Arial, Helvetica, sans-serif;
}

.tyler {
    font-size: 16px;
    margin: 50px;
    font-family: Arial, Helvetica, sans-serif;
}