

@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



body{
	font-family: 'Josefin Sans'
	
}

p{
	line-height: 1.5em;
	font-size: 2em;
}

img{
	width: 72%;
}

header{
	text-align: center;
	

	height: 700px;
}
h1{
	font-weight: 600;
	font-size: 3em;
	text-align: center;
	padding: 1em 0;
	color:white;
}
.estructura {
	display: flex;
}
.direction {
flex-direction: row;
align-items: center;
justify-content: center;



}

nav{
	background-color: rgba(0, 0, 0, 0);
}

ul{
	padding: 2em 0 5em ;
	text-align: center;
	background-color: white;
	
}

ul a{
	color: rgb(0, 0, 0);
	text-decoration: none;
}

li{
	
	display: inline;
	padding: 3em;
	font-size: 1.5em
}

li:hover {
	background-color: rgb(0, 255, 242);
}

li a:hover {
	color: black;
}




/*nuevooo*/






@import url(https://fonts.googleapis.com/css?family=Montserrat:500);

:root {
	/* Base font size */
	font-size: 10px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	min-height: 100vh;
	background-color: #fafafa;
}

.container {
	max-width: 100rem;
	margin: 0 auto;
	padding: 0 2rem 2rem;
}

.heading {
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 4rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	padding: 3.5rem 0;
	color: #1a1a1a;
}

.heading span {
	display: block;
}

.gallery {
	display: flex;
	flex-wrap: wrap;
	/* Compensate for excess margin on outer gallery flex items */
	margin: -1rem -1rem;
}

.gallery-item {
	/* Minimum width of 24rem and grow to fit available space */
	flex: 1 0 24rem;
	/* Margin value should be half of grid-gap value as margins on flex items don't collapse */
	margin: 1rem;
	box-shadow: 0.3rem 0.4rem 0.4rem rgba(0, 0, 0, 0.4);
	overflow: hidden;
}

.gallery-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease-out;
}

.gallery-image:hover {
	transform: scale(1.15);
}

/*

The following rule will only run if your browser supports CSS grid.

Remove or comment-out the code block below to see how the browser will fall-back to flexbox styling. 

*/

@supports (display: grid) {
	.gallery {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
		grid-gap: 2rem;
	}

	.gallery,
	.gallery-item {
		margin: 0;
	}
}

/*aqui lo nuev*/

/* Spotlight */

.spotlight {
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
}

	.spotlight .image {
		-moz-order: 1;
		-webkit-order: 1;
		-ms-order: 1;
		order: 1;
		border-radius: 0;
		width: 40%;
	}

		.spotlight .image img {
			border-radius: 0;
			width: 100%;
			object-fit: cover;
			max-height: 400px;
		}

	.spotlight .content {
		padding: 2em 4em 0.1em 4em ;
		-moz-order: 2;
		-webkit-order: 2;
		-ms-order: 2;
		order: 2;
		max-width: 48em;
		width: 60%;
	}

	.spotlight:nth-child(2n) {
		-moz-flex-direction: row-reverse;
		-webkit-flex-direction: row-reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}

	.spotlight:nth-child(1) {
		background-color: rgb(255, 255, 255);
	}

	.spotlight:nth-child(2) {
		background-color: rgb(255, 255, 255);
	}

	.spotlight:nth-child(3) {
		background-color: rgba(255, 255, 255, 0.225);
	}

	.spotlight:nth-child(4) {
		background-color: rgba(0, 0, 0, 0.3);
	}

	.spotlight:nth-child(5) {
		background-color: rgba(0, 0, 0, 0.375);
	}

	.spotlight:nth-child(6) {
		background-color: rgba(0, 0, 0, 0.45);
	}

	.spotlight:nth-child(7) {
		background-color: rgba(0, 0, 0, 0.525);
	}

	.spotlight:nth-child(8) {
		background-color: rgba(0, 0, 0, 0.6);
	}

	.spotlight:nth-child(9) {
		background-color: rgba(0, 0, 0, 0.675);
	}

	.spotlight:nth-child(10) {
		background-color: rgba(0, 0, 0, 0.75);
	}

	@media screen and (max-width: 1280px) {

		.spotlight .image {
			width: 45%;
		}

		.spotlight .content {
			width: 55%;
		}

	}

	@media screen and (max-width: 980px) {

		.spotlight {
			display: block;
		}

			.spotlight br {
				display: none;
			}

			.spotlight .image {
				width: 100%;
			}

			.spotlight .content {
				padding: 4em 3em 2em 3em ;
				max-width: none;
				text-align: center;
				width: 100%;
			}

	}

	@media screen and (max-width: 736px) {

		.spotlight .content {
			padding: 3em 2em 1em 2em ;
		}

	}
	.image {
		border-radius: 3px;
		border: 0;
		display: inline-block;
		position: relative;
	}

		.image img {
			border-radius: 3px;
			display: block;
		}

		.image.left {
			float: left;
			margin: 0 2em 2em 0;
			top: 0.25em;
		}

		.image.right {
			float: right;
			margin: 0 0 2em 2em;
			top: 0.25em;
		}

		.image.left, .image.right {
			max-width: 40%;
		}

			.image.left img, .image.right img {
				width: 100%;
			}

		.image.fit {
			display: block;
			margin: 0 0 2em 0;
			width: 100%;
		}

			.image.fit img {
				width: 100%;
			}

/*responsive*/

@media screen and (orientation:portrait) {
	li{
	
		display: inline;
		padding: 3em;
		font-size: 10px
	}
	}