/* Estilos básicos */
body { 
      	background-image: url(imagenes/fondoindex.png);
	   background-size:cover;
	   background-repeat:no-repeat;
    font-family:Arial, sans-serif;
	margin:0;
	padding:0;
	color:black;
    background-atacchment: scroll;
	text-align: justify; /*justificar el texto*/
	
}

header {
	background-color: #333;
	color: white;
	padding: 1rem;
}

nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 1rem;
}

nav a{
	color: white;
	text-decoration: none;
}

main {
    padding:2rem;
}
	
footer {
	background-color:#333;
	color:white;
	text-align:center;
	padding:1rem;
    position:fixed;	
	width:100%;
	bottom:0;
}
