*{
	margin:0;
	padding: 0;
	box-sizing:border-box;
	font-family: 'Oxygen', sans-serif;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.df{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

body{
	min-height: 100vh;
	width: 100%;
	background: url(../img/background.jpg) center/cover no-repeat;
	text-align: center;
}

.wrapper{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
	-webkit-justify-content: center;
	-ms-align-items: center;
	align-items: center;
	min-height: 600px;
}
.contenedor{
	background: rgba(255,255,255,.5);
	padding: 20px;
	border-radius: 5px;
}
h1{
	font-size: 80px;
	text-transform: uppercase;
}
p{
	margin-top: 20px;
	font-size: 30px;
}
.boton{
	margin-top: 30px;
	width: 300px;
	height: 45px;
	border: 1px solid black;
	background: rgba(0,0,0,.1);
	text-transform: uppercase;
	color: black;
	text-decoration: none;
	line-height: 45px;
	display: inline-block;
	transition:.5s;
}
.boton:hover{
	background: white;
}

@media (max-width: 600px){
	h1{
		font-size: 40px;
	}
	.wrapper{
		padding: 20px;
	}
	.contenedor{
		width: 100%;
	}
	.boton{
		width: 80%;
		font-size: 12px;
	}
}