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;
}


/* not css reset */

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    font-family: Garamond, Bookman, Palatino, Georgia, Serif;
    font-weight: 600;
    font-size: 15pt;
}

* {
    color: rgb(255, 52, 52);
}

html,
body {
    background-color: black;
}

footer {
    position: sticky;
    bottom: 0px;
    padding: 10px;
    background-color: black;
    border-top: solid;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

h2 {
    font-size: 20pt;
    text-decoration: underline;
}

main {
    display: grid;
    grid-template-areas:
        "Title Title"
        "FirstPara SecondPara"
        "ThirdPara FourthPara"
        "Image Image"
    ;
    gap: 20px;
}

header {
    position: sticky;
    top: 0px;
    padding: 20px;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid;
}

#Logo {
    width: auto;
    height: 75px;
}

#Links {
    float: right;
    height: 100%;
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

#Links a {
    text-decoration: none;
    font-size: 15pt;
    margin: 10px;
}

header div h1 {
    font-size: 20pt;
}

main div {
    margin-bottom: 20px;
    margin-top: 20px;
}

main h1 {
    font-size: 30pt;
}

footer div img {
    height: 50px;
}

@media only screen and (max-width: 599px) {

    #Links {
        flex-direction: column;
    }

    #Links a {
        text-decoration: none;
        font-size: 10pt;
        margin: 0px;
    }

    header div h1 {
        font-size: 15pt;
    }

    #Logo {
        width: auto;
        height: 50px;
    }

    main h1 {
        font-size: 20pt;
    }

    main div {
        margin-bottom: 5px;
        margin-top: 5px;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    a {
        font-family: Garamond, Bookman, Palatino, Georgia, Serif;
        font-weight: 400;
        font-size: 10pt;
    }


    footer div p {
        font-size: 12px;
    }

    footer div img {
        height: 20px;
    }
}

@media only screen and (min-width: 600px) and (max-width: 1199px) {
    #Links {
        flex-direction: column;
    }

    #Links a {
        text-decoration: none;
        margin: 0px;
    }

    #Logo {
        width: auto;
        height: 65px;
    }

    main h1 {
        font-size: 25pt;
    }

    main div {
        margin-bottom: 10px;
        margin-top: 10px;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    a {
        font-family: Garamond, Bookman, Palatino, Georgia, Serif;
        font-weight: 500;
        font-size: 15pt;
    }

    footer div p {
        font-size: 15px;
    }

    footer div img {
        height: 35px;
    }
}

@media only screen and (min-width: 1200px) {
    #Links {
        flex-direction: row;
    }

    #Links a {
        text-decoration: none;
        margin: 10px;
    }

    #Logo {
        width: auto;
        height: 75px;
    }

    main h1 {
        font-size: 30pt;
    }

    main div {
        margin-bottom: 20px;
        margin-top: 20px;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    a {
        font-family: Garamond, Bookman, Palatino, Georgia, Serif;
        font-weight: 600;
        font-size: 15pt;
    }

    footer div p {
        font-size: 20px;
    }

    footer div img {
        height: 50px;
    }
}