css
/* Estilos generales */
body {
font-family: Arial, sans-serif;
background-color: #f9f9f9;
color: #333333;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
h1, h2, h3 {
color: #ff3366;
}
a {
color: #ff3366;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Estilos de encabezado */
header {
background-color: #ffffff;
padding: 20px;
text-align: center;
}
header h1 {
font-size: 36px;
margin-bottom: 10px;
}
header p {
font-size: 18px;
margin-bottom: 20px;
}
/* Estilos de navegación */
nav {
background-color: #ff3366;
padding: 10px;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
}
nav ul li {
display: inline-block;
margin-right: 10px;
}
nav ul li a {
color: #ffffff;
padding: 5px 10px;
}
nav ul li a:hover {
background-color: #ffffff;
color: #ff3366;
border-radius: 3px;
}
/* Estilos de secciones */
section {
margin-bottom: 30px;
}
section h2 {
font-size: 24px;
margin-bottom: 10px;
}
section p {
font-size: 16px;
line-height: 1.5;
}
/* Estilos de pie de página */
footer {
background-color: #333333;
color: #ffffff;
padding: 20px;
text-align: center;
}
footer p {
font-size: 14px;
margin-bottom: 10px;
}