
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&display=swap');
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;
}

/* Custom CSS */
body {
    font-family: 'Open Sans', sans-serif;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

li {
    float: left;
}

li p {
    display: block;
    padding: 8px;
    background-color: #fff;
    color: black;
}

nav {
    position: relative;
    width: 80%;
    left: 10%;
    background-color: #fff;
    margin-bottom: 5vh;
}

.right {
    position: relative;
    margin-top:auto;
    float: right;
}

.center {
    position: relative;
    width: 80%;
    left: 10%;
    margin-top: 5vh;
}

.subtext {
    padding-top: 20px;
}

#bg {
    position:relative;
    left: 10%;
    width: 80%;
    height: 300px;
    object-fit:cover;
}

h1 {
    font-size: 36px;
}
h2 {
    font-size: 24px;
}

.button {
    background-color: #5595f4;
    border: none;
    color: white;
    padding: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    margin-top: 40px;
    cursor: pointer;
    border-radius: 24px;
}

.container {
    display: flex;
    justify-content: space-between;
}

.column {
    flex: 1;
    margin: 10px;
    text-align: center;
}

@media only screen and (max-width: 800px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
}


