/* https://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain)*/a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline}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:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}
*{box-sizing: border-box; margin: 0; padding: 0;}
html{
	height: 100%;
	width: 100%;
}
body{
	height: 100%;
	width: 100%;
	font-size: 18px;
	font-family: serif;
	line-height: 1.5;
	background-color: #ffffff;
	color: #222222;
	padding-top:  10px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.wrapper{
	overflow: auto;
	height: 100vh;
}
.top{
	padding: 0px 40px;
	height: 200px;
	-webkit-user-select: none;      
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}
.bottom{
	height: calc(100vh - 200px);
	position: relative;
}





/*Display Area*/
.display{
	background-color: #ECECEC;
	padding: 20px;
	position: absolute;
	left: 40px;
	right: 40px;
	top: 20px;
	bottom: 40px;
	overflow: auto;
}
.display p{
	margin-bottom: 25px;
}



/*Form Styles*/
.wrapper h1{
	padding: 15px;
	font-size: 22px;
}
form{
	width: 100%;
	margin-bottom: 15px;
	padding: 20px;
	background-color: #ECECEC;
}

form p{
	line-height: 30px;
	height: 30px;
	display: inline-block;
	margin: 5px;
}
form input{
	width: 40px;
	text-align: center;
}
form select{
	padding: 0px 10px;
}
form select, form input{
	display: inline-block;
	margin: 0px;
	line-height: 30px;
	height: 28px;
	border: none;
	outline: none;
	border-bottom: 2px solid #999999;
	background-color: #FFFFFF;
}
#generate{
	cursor: pointer;
	display: block;
	width: 100px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background-color: #444444;
	color: #FFFFFF;
	border-radius: 3px;
	margin-top: 15px;
	transition: all .1s ease-in;
	-webkit-transition: all .1s ease-in;
}
#generate:hover{
	background-color: #666666;
}


/*Media Queries*/
@media screen and (max-width: 516px){
	.top{
		height: 200px;
	}
	.bottom{
		height: calc(100vh - 200px);
	}
	.display{
		top: 60px;
	}
}

.article {
	padding:1% 20% 1% 3%;
}