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;
}

body{
    background-color:rgb(255, 255, 255);
    font-family: "Quicksand", sans-serif;
}

#topPage{
    height:150px;
    background-color:rgb(215, 215, 215);
    margin-bottom:50px;
}

#topPage h1{
    text-align:center;
    padding-top:45px;
    font-size:45px;
    font-weight:300;
}

label{
    font-size:25px;
}

#inputBox,#outputBox{
    width:100%;
    padding:5px 50px 10px 5px;
    font-family: "Quicksand", sans-serif;
    font-size:20px;
    border-radius:12px;
    margin-top:5px;
    border:solid gray 1px;
}

#input,#output{
    width:30%;
    margin:auto;
    margin-top:20px;
}

#outputBox{
    cursor:not-allowed;
}

#TTSButton,#voiceButton{
    font-family: "Quicksand", sans-serif;
    font-weight:500;
    margin-top:10px;
    background-color:white;
    border-radius:6px;
    border:solid gray 1px;
    padding:7px 12px;
    transition:.3s;
}

#TTSButton:hover,#voiceButton:hover{
    background-color:rgb(237, 237, 237);
    cursor:pointer;
}