body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

header {
    background-color: #5a189a;
    color: white;
    text-align: center;
	padding: 1rem;
    text-shadow: 4px 1px #000;
}

nav ul {
    list-style: none;  
    margin: 0;         
    display: flex;     
    justify-content: center; 
}

nav ul li {
    margin: 0 1rem;    
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    background-color: white;
    max-width: 900px;
    margin: 2rem auto;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

article, section {
	
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
	background-color: #f9f9f9;
}

aside {
    background-color: #f4e1ff;
    border-left: 4px solid #9d4edd;
    padding: 1rem;
    font-style: italic;
    color: #555;
}

.imagen-contenedor {
    text-align: center;
    margin: 2rem 0;
}

.imagen-contenedor img {
    max-width: 100%;
    height: auto;
    border: 3px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease-in-out;
}

.imagen-contenedor img:hover {
    transform: scale(1.02);
}

.pie-imagen {
    font-size: 0.9em;
    color: #666;
    margin-top: 0.5rem;
}

footer {
    background-color: #5a189a;
    color: white;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}
