/*-------------------------------------------------------------
						
						CSS Reset
						
--------------------------------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/ 2. v2.0 | 20110126
  License: none (public domain)
*/

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;
}

/*-------  Further CSS Reset  ---------*/

a {
	text-decoration: none;
	color: #2D2D2E;
}

/*-------------  Colors  ---------------
red:
#d90000

darkgrey:
#252525
--------------------------------------*/


/*-------------------------------------------------------------
						
						Body
						
--------------------------------------------------------------*/

body {
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    color: #2D2D2E;
    background-color: #ffffff;
}

body {
	overflow: hidden
}




section {
	display: flex;
	width: 100vw;
	height: 100vh;
	background: #f3f4f5;
	align-content: center;
	justify-content: center;
	align-items: center;
}


div {
	display: block;
	width: 350px;
	height: 300px;
	background: #161f30;
	color: white;
	padding: 30px 20px;
	box-sizing: border-box;
}

h2 {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 25px;
	line-height: 30px;
	font-weight: bold;
}

h3 {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 18px;
	line-height: 30px;
	font-weight: bold;
	margin-bottom: 60px;
}

input {
	display: block;
	width: 80%;
	border: none;
	background: white;
	padding: 10px;
	margin: 0 auto;
	margin-bottom: 20px;
}



button {
	font-size: 14px;
	line-height: 18px;
	display: block;
	padding: 12px;
	background: #53b8e5;
	border: 2px solid #53b8e5;
	color: white;
	transition-property: color, background;
	transition-duration: .3s;
	transition-timing-function: ease-out;
	margin: 0 auto;
}

button:hover {
	color: #53b8e5;
	background: white; 
	cursor: pointer;
}