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;
}

main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 30px 200px 200px 1.5fr 100px;
    width: 1280px;
    margin: auto;
    background-color: white;
}

.stringMachine {
	grid-row: 1;
	grid-column: span 3;
    padding-top: 10px;
    font-size: 20px;
    text-align: center;
    padding-bottom: 25px;
}

.stringInformation {
	grid-column: 1;
	grid-row: 2;
    margin: auto;
    width: 300px;
	padding-top: 10px;
    font-size: 20px;
    padding-bottom: 25px;
}
.stringInformation input{
	margin-top: 10px;
}
.stringInformation h1{
	margin-bottom: 15px;
	font-size: 25px;
	text-align: center;
}

.stringSearch {
	grid-column: 2;
	grid-row: 2;
    margin: auto;
    width: 350px;
	padding-top: 10px;
    font-size: 20px;
    padding-bottom: 25px;
}
.stringSearch input{
	margin-top: 10px;
}
.stringSearch h1{
	margin-bottom: 15px;
	font-size: 25px;
	text-align: center;
}

.substring {
	grid-column: 3;
	grid-row: 2;
    margin: auto;
    width: 400px;
	padding-top: 10px;
    font-size: 20px;
    padding-bottom: 25px;
}
.substring input{
	margin-top: 10px;
}
.substring h1{
	margin-bottom: 15px;
	font-size: 25px;
	text-align: center;
}
