/* 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;
}

/* Start CSS */

header {
    height: 50px;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.7);
}

header a {
    margin: 0 40px;
    line-height: 50px;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    color: black;
}

footer {
    height: 50px;
    line-height: 50px;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.7);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}

h1 {
    text-align: left;
    font-family: SF Pro Display, SF Pro Icons, Helvetica Nueue, Helvetica, Arial, sans-serif;
    font-size: 32px;
    margin: 20px auto;
    width: 100%;
    letter-spacing: 1px;
    font-weight: 600;
}

h2 {
    text-align: left;
    font-family: SF Pro Display, SF Pro Icons, Helvetica Nueue, Helvetica, Arial, sans-serif;
    font-size: 20px;
    margin: 10px auto;
    width: 100%;
    letter-spacing: 1px;
    font-weight: 400;
}

span {
    font-weight: 600;
}

#parent {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    background-color: rgb(247, 247, 247);
    border-radius: 1em;
    box-shadow: 0px 5px 9px rgba(0, 0, 0, 0.4);
    margin: 30px auto;
    padding: 30px;
    width: 70vw;
}

#col1 {
    display: flex;
    flex-flow: column;
    grid-column: 1/2;
    grid-row: 1/2;
}

#col2 {
    display: flex;
    flex-flow: column;
    grid-column: 2/3;
    grid-row: 1/2;
}

label {
    text-align: left;
    font-family: SF Pro Display, SF Pro Icons, Helvetica Nueue, Helvetica, Arial, sans-serif;
    font-size: 20px;
    margin: 10px auto;
    width: 100%;
    letter-spacing: 1px;
    font-weight: 400;
}

input {
    border: solid 1px;
    background-color: rgb(244, 244, 244);
    border-color: #86868b;
    border-radius: 0.5em;
    height: 25px;
    width: 200px;
    padding: 5px;
    font-size: 16px;
}

select {
    border: solid 1px;
    background-color: rgb(244, 244, 244);
    border-color: #86868b;
    border-radius: 0.5em;
    height: 37px;
    width: 110px;
    padding: 5px;
    font-size: 16px;
}

#submit {
    height: 37px;
    border: none;
    text-align: center;
    color: white;
    margin: 10px 0;
    background-color: #0071E3;
    transition: 150ms;
}

#submit:hover {
    background-color: #4da6ff;
}