@import url('https://fonts.googleapis.com/css2?family=Jura:wght@300;400&display=swap');

* {
	padding:0;
	margin:0;
	box-sizing: border-box;
	
}

body {
	font-family: 'Jura', sans-serif;
	background: url("imgs/PORTADA1.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.texto-hero{
	margin: 100px auto;
	border-radius: 20px;
	display: block;
    background: rgba(0,0,0,0.58);
    padding: 10px;
    width: 400px;
    text-align: center;
    color: whitesmoke;
}



nav ul {
	border-radius: 10px;
	padding: 15px;
	margin:10px  auto;
	width: 100%;
	background: rgba(200,200,200,0.2);
	text-align: center;
	
}

nav ul li {
	width: auto;
	align-content: center;
	display:inline-block;
	background: rgba(255,255,255,1.00);
	border-radius: 7px;
}

nav ul li:hover {
	background: darkred;
	border-radius: 7px;
}

nav ul li a:hover {
	width: inherit;
	color: aliceblue;
}

nav ul li a {
	font-size: 20px;
	color: darkred;
	display:block;
	text-decoration:none;
	padding: 3px;
	margin: 0 .5em;
	height: 30px;
}

nav ul li a span {
	margin-right:10px;
}

header {
	display: flex;
	margin: auto;
	align-content: center;
}

h2{
    font-size:30px;
    font-weight: 800;
}

h4 {
	font-size: 20px;
	font-weight: 400;
	}
	
@media screen and (max-width: 667px){
	
	body {
		background-size:auto;
	}
	
	h2{
    font-size:20px;
    font-weight:800;
}
	
	.texto-hero {
		font-size: 14px;
		width: 280px;
		box-sizing: border-box;
	}
	
	h4 {
	font-size: 14px;
	font-weight: 600;
	}
	
	p {
		font-size: 14px;
		
	}
}
