@import url('https://fonts.googleapis.com/css?family=Poppins:400,600');
@import url('https://fonts.googleapis.com/css?family=Oswald:100,200,300,400,500,600,700,800,900');

html, body {
	height: 100%;
	overflow: hidden;
}
body {
	background: #000 url('../img/mrocha.jpg') center/cover no-repeat;
	margin: 0px;
	padding: 0px;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	color: #FFF;
	animation: backgroundSize 4s ease-in-out 1 forwards;
}
* {
	outline: none;
}
section {
	width: calc(100vw - 40px);
	height: calc(100vh - 40px);
	background: rgba(0, 0, 0, 0.5);
	display: grid;
	grid-template-rows: 1fr 50px 100px;
	grid-gap: 50px;
	justify-items: center;
	align-items: end;
	text-align: center;
	padding: 20px;
}
#logo {
	max-width: 90%;
	align-self: middle;
}
label, a {
	align-self: start;
}
a {
	display: inline-block;
	vertical-align: top;
	align-self: start;
	text-transform: uppercase;
	border-radius: 7px;
	padding: 10px 25px;
	background: #436fd6;
	color: #FFF;
	text-decoration: none;
	transition: all .5s;
	font-size: 16px;
}
a:hover {
	background: #FFF;
	color: #436fd6;
	animation: shake 0.2s;
}

/* SVG */
/* .fil0 {fill:#FEFEFE;fill-rule:nonzero} */
svg path {
	shape-rendering: geometricPrecision;
	fill: transparent;
	stroke: #FFF;
	stroke-width: 30;
	stroke-dasharray: 11100;
	stroke-dashoffset: 11100;
	animation: animLogo 2.5s ease-in-out 1 forwards;
}

@keyframes shake {
  0% { transform: translate(0, 0); }
  25% { transform: translate(2px, -2px); }
  50% { transform: translate(-2px, 2px); }
  75% { transform: translate(2px, 2px); }
  100% { transform: translate(-2px, -2px); }
}

@keyframes animLogo {
	0% {
		stroke-dashoffset: 11100;
	}
	80% {
		fill: transparent;
	}
	100% {
		fill: #FFF;
		stroke-dashoffset: 0;
	}
}
@keyframes backgroundSize {
	from {
		background-size: 120%;
	}
	to {
		background-size: 100%;
	}
}