@charset "ISO-8859-1";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Press Start 2P', cursive, "Lucida Console", monospace;
    scroll-behavior: smooth;
    
}

body{

	align-items: center;
	background-color:black;

}


/* HEADER */

header{
	
	text-align: center;
	margin: 20px 10px;
	justify-content: center;
	align-items: center;
	
}

#logo{
	max-width: 8%;
	height: auto;

}


.check font{
	color: #28d9d3;
}

.menu a{
	color: #28d9d3;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0 10px;
	transition: 0.2s;
}

.mostrar-menu,
.esconder-menu{
	font-size: 30px;
	cursor: pointer;
	display: none;
	transition: 0.2s;
	color: #28d9d3;
}

.mostrar-menu{
	order: 1;
	color: #28d9d3;
}

.menu a:hover,
.mostrar-menu:hover,
.esconder-menu:hover{
	color: #d92831;
}

#check{
	display: none;
}


/* FOOTER */

footer{
	
	position: relative;
	bottom: 5%;
    text-align: center;
    margin: auto;
    width: 100%;
    padding-top: 20px;

}

footer .social-links{
	display: flex;
	justify-content: center;
}

footer .social-links a{
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 5px 15px 5px;
	font-size: 25px;
	color: white;
	text-decoration: none;
}

/* INICIO */

h1{
	position: relative;
	color: #d92831;
	margin: 0 0 0 5px;
	font-size: 15px;
	text-align: center;
    margin: auto;
    max-width: 100%;
    height: auto;
    padding-top: 0px;
    letter-spacing: 4px;
  	overflow: hidden;
  	background: linear-gradient(90deg, #000, #fff, #d92831);
 	background-repeat: no-repeat;
 	background-size: 80%;
  	animation: animate 10s linear infinite;
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: rgba(255, 255, 255, 0);
    
}

@keyframes animate {
  0% {
    background-position: -500%;
  }
  100% {
    background-position: 500%;
  }
}

#fondo{
	
	position: relative;
    max-width: 100%;
    height: auto;
	
}	

/* PERFIL */

h3{
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 10px;
	color: white;
}

h3:after{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	height: 4px;
	width: 50px;
	border-radius: 2px;
	background-color: #d92831;
}

h4{
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 10px;
	color: white;
}



/*CONTENEDOR*/

.contenedor{
	position: relative;
	display: flex;
	justify-content:center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 20px 100px;
	
}

.contenedor:after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url("./images/logoInicio.png") no-repeat center;
	background-size:cover;
	z-index: -1;
	filter: blur(50px);
}

.caja-contacto{
	max-width: 850px;
	display: grid;
	grid-template-columns: repeat (2 ,1fr);
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: #000;
	box-shadow: 0px 0px 19px 5px rgba(250, 250, 250, 019);	 
}

.derecha{
	padding: 25px 40px;
}

h2{
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 10px;
	color: white;
}

h2:after{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	height: 4px;
	width: 50px;
	border-radius: 2px;
	background-color: #d92831;
}

.campo{
	width: 100%;
	padding: 0.5rem 1rem;
	outline: none;
	border: 2px solid rgba(0, 0, 0, 0);
	background-color: rgba(250, 250, 250);
	font-size: 1.1rem;
	margin-bottom: 22px;
	transition: .3s;
}

.campo:hover{
	backgroud-color: rgba(0, 0, 0, 0.1);
}

.campo:focus{
	background-color: #fff;
	border: 2px solid rgba(30, 85, 250, 0.47);
}

.area{
	min-height: 150px;
}

.btn{
	width: 100%;
	padding: 0.5rem 1rem;
	font-size: 1.1rem;
	background-color: #d92831;
	cursor: pointer;
	outline: none;
	border: none;
	color: #fff;
	transition: .3s;
	
}

.btn:hover{
	background-color: #28d9d3;
	
}

/* RESPONSIVE */

@media(max-width: 768px){
	/* HEADER */
	.mostrar-menu,
	.esconder-menu{
		display: block;
	}
	
	.menu{
		position: fixed;
		width: 100%;
		height: 100vh;
		background: #000000;
		right: -100%;
		top: 0;
		text-align: center;
		padding: 100px 0px;
		z-index: 100;
		transition: 0.5s;
	}
	
	.menu a{
		display: block;
		padding: 15px;
	}
	
	.esconder-menu{
		position: absolute;
		top: 40px;
		right: 40px;
	}
	
	#check:checked ~ .menu{
		right: 0;
	}
	
	.caja-contacto{
		grid-template-columns: 1fr;
	}
	
	h1{
		font-size: 8px;
	}
}

