/**
 * Reset
 */
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,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;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}

* {
	margin: 0;
	padding: 0;
}

html, body {
	height: 100%;
}

::selection {
  color: #fff;
  color: rgba(255, 255, 255, 0.85);
  background: #FF99C9;
}

body {
	background: #304DAD;
	text-rendering: optimizelegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: 'Inconsolata', sans-serif;
	max-width: 700px;
	margin: 0 auto;
	padding: 0 20px;
}

.no-scroll {
	height: 100%;
	overflow: hidden;
}

section {
	min-height: 100%;
	flex: 1;
  display: flex;
	align-items: center;
}

.box-inner {
	display: block;
	flex: 1 1 auto;
}

h1 {
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	font-style: normal;
	font-variant: normal;
	line-height: 33px;
}

.intro-container {
	padding: 30px 0;
}

p {
	font-size: 20px;
	line-height: 33px;
	font-weight: 400;
	color: #ffffff;
	font-style: normal;
	font-variant: normal;
	padding-bottom: 30px;
}

a {
	text-decoration: underline;
	color: #fff;
}

a:hover {
	color: #FFC700;
}

#intro {
	display: inline;
}

#content {
	visibility: hidden;
}

/**
 * Typed.js cursor
 */
.typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;

	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	font-style: normal;
	font-variant: normal;
	transition: all 0.7s;
	opacity: 0;
}

@keyframes blink {
  0% { opacity:0; }
  50% { opacity:1; }
  100% { opacity:0; }
}

@-webkit-keyframes blink {
  0% { opacity:0; }
  50% { opacity:1; }
  100% { opacity:0; }
}

@-moz-keyframes blink {
  0% { opacity:0; }
  50% { opacity:1; }
  100% { opacity:0; }
}


