/* Reset de márgenes y padding para todos los elementos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo general para el cuerpo */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Estilo del encabezado */
header {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
}

header h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

header h1 {
    font-size: 36px;
    margin: 10px 0;
}

header p {
    font-size: 18px;
    margin: 5px 0;
}

header img {
    max-width: 150px;
    height: auto;
    border-radius: 50%;
    margin-top: 10px;
}

/* Estilo para el contenido principal */
main {
    padding: 20px;
}

main h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
}

li {
    margin-bottom: 20px;
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

li h4 {
    font-size: 22px;
    color: #34495e;
    margin-bottom: 10px;
}

li p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 10px;
}

li img {
    max-width: 100px;
    height: auto;
    border-radius: 5px;
    margin-top: 10px;
}

/* Estilo del botón */
a.button {
    display: inline-block;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 20px;
}

a.button:hover {
    background-color: #2980b9;
}
