/*
*{
	margin:0;
	padding:0;
	box-sizing: border-box;
}

body{
	background: #f2f2f2;
	font-family: 'Raleway', sans-serif;
}

header{
	width: 100%;
	height:600px;
	background: url('Skewed.png');
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
}
*/
.flex{
	width: 100%;
	height:100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/*
.textos{
	padding:300px;
	color:#fff;
	text-align: center;
}

h1{
	font-size: 40px;
	margin-bottom:20px;
}

a{
	text-decoration: none;
	font-size:20px;
	display: inline-block;
	padding: 7px;
	width: 220px;
	border:1px solid #fff;
	border-radius: 10px;
	color:#fff;
}
a:hover{background: #000; color:#fff; border:1px solid #000;}*/

.modal{
	display: block;
	position: fixed;
	z-index:1;
	overflow: auto;
	left: 0;
	top:45px;
	width: 100%;
	height:100%;
	background: rgba(0, 0, 0, 0.452);
	border-radius: 40px;
	transform: translateY(0%);
}

.contenido-modal{
	position: relative;
	background-color: rgb(247, 243, 243);
	margin: auto;
	width: 50%;
	box-shadow: 0 0 6px 0 rgba(0, 0, 0, .4);
	animation-name: modal;
	animation-duration: 1s;
	
}
@keyframes modal{
	from{top:-330px; opacity:0;}
	to{top:0; opacity:1;}
}
.close{
	color: #080808;
	font-size:30px;
	font-weight: bold;
}
.close:hover{
	color:#c20c05;
	text-decoration: none;
	cursor: pointer;
}

.modal-header, .footer{
	padding: 1px 1px;
	background: rgb(247, 243, 243);
	color:#b62222;
	
}

p{
	text-align: justify;
}

.modal-body{
	
	border-radius: 50px;
}

@media screen and (max-width:900px){
	.contenido-modal{
		width: 50%;
	}
	.textos{
		padding: 150px;
	}
}

@media screen and (max-width:500px){
	.textos{
		padding:50px;
	}
}