@charset "utf-8";
/* CSS Document */
@font-face {
	font-family: "Raleway";
	src: url("font/Raleway-SemiBold.ttf");
	font-weight: 300;
}

html{
	height: 100%;
	width: 100%;
}
body{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: none;
}

button, a{
	background-color: transparent;
	border: none;
	text-decoration: none;
	text-transform: none;
	color: #4caad5;
}

.logo{
	width: 33%;
	height: auto;
	margin: 0 auto;
	margin-top: 10%;
	margin-bottom: 12%;
}

.botonEntrar{
	color: #4caad5;
	font-family: "Raleway", Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 240%;
	font-weight: 300;
}

.botonHover{
	border-radius: 4px;
	background-color: #4caad5;
	border: none;
	color: #ffffff;
	text-align: center;
	font-family: "Raleway", Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 28px;
	padding: 20px;
	width: 450px;
	transition: all 0.5s;
	cursor: pointer;
	margin: 5px;
}

.botonHover span{
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
}

.botonHover span:after{
	content: '\00bb';
	position: absolute;
	opacity: 0;
	top: 0;
	right: -20px;
	transition: 0.5s;
}

.botonHover:hover span{
	padding-right: 25px;
}

.botonHover:hover span:after{
	opacity: 1;
	right: 0;
}

.contenedor-vertical{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	border: none;
	background-color: transparent;
	margin-top: auto;
}

.contenedor-horizontal{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	border: none;
	background-color: transparent;
	margin-bottom: auto;
}

@media screen and (max-width: 768px) {
	.logo{
		width: 66%;
		margin-bottom: 30%;
	}
	.botonEntrar{
		font-size: 150%;
	}
	.botonHover{
		font-size: 150%;
	}
	.contenedor{
		margin-top: -20%;
	}
}
@media screen and (max-width: 1024px) {
	.logo{
		width: 50%;
		margin-bottom: 20%;
	}
	.botonEntrar{
		font-size: 200%;
	}
	.botonHover{
		font-size: 200%;
	}
}