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;
}

input {
	margin-top: 5px;
	margin-bottom: 5px;
	margin-right: 10px;
	margin-left: 5px;
}

label {
	margin-left: 5px;
	font-size: 20px;
}

h2 {
	font-size: 2vw;
	margin-left: 5px;
	margin-bottom: 10px;
}

#String  {
	margin-right: auto;
}

#StringLabel {
	font-size: 25px;
	margin-left: 40vw;
}

#grid {
	display: grid;
	width: 100vw;
	grid-template-areas: 
	"Div1 Div2 Div3";

	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr;
}

#Div1 {
	grid-area: Div1;
}

#Div2 {
	grid-area: Div2;
}

#Div3 {
	grid-area: Div3;
}

.flex {
	display: inline-flex;
	flex-flow: column;
}
