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

body {
    position: relative;
    background-color: #eeeeee;
}

h2 {
    font-size: 35px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 20px auto;
    width: 840px;
    font-weight: bold;
}

p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    width: 840px;
    margin: 20px auto;
}

form {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    flex-direction: column;
    margin: 20px auto;
    width: 800px;
    height: auto;
    background-color: #ffffff;
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 1em;
}

div {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-color: red; */
}

h1 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 40px;
    margin: 15px;
    font-weight: bold;
    grid-row: 1/2;
    grid-column: 1/3;
    text-align: center;
}

input {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
    outline: none;
    border: none;
    background-color: #edf2f5;
    border-radius: 5px;
    margin: 10px 0;
    padding: 0 20px;
    height: 40px;
    width: 300px;
}

select {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
    outline: none;
    border: none;
    background-color: #edf2f5;
    border-radius: 5px;
    margin: 10px 0;
    padding: 0 20px;
    height: 40px;
    width: 740px;
}

textarea {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
    outline: none;
    border: none;
    background-color: #edf2f5;
    border-radius: 5px;
    margin: 10px 0;
    padding: 20px;
    height: 100px;
    width: 700px;
    resize: none;
}

.radio {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 740px;
    margin: 5px 0;
}

.radio input {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    border-radius: 5px;
    margin: 0 10px;
    height: 20px;
    width: auto;
    box-shadow: none;
}

.radio label {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    border-radius: 5px;
    margin: 0 10px;
}

label {
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    font-weight: bold;
    font-size: 22px;
    width: 340px;
    border-radius: 5px;
    margin: 10px 0;
}

#submit {
    font-size: 25px;
    font-weight: bold;
    color: white;
    background-color: #ab7078;
    height: 60px;
    width: 740px;
    margin: 30px auto;
    grid-column: 1/3;
}

#d1 {
    grid-column: 1/2;
}

#d2 {
    grid-column: 2/3;
}

#d3 {
    grid-column: 1/3;
}

#d4 {
    grid-column: 1/3;
}

#d5 {
    grid-column: 1/3;
}

#d3 label, #d4 label, #d5 label {
    width: 740px;
}