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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ccc;
}

h1 {
    font-size: 2em;
    margin-top: 0;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    display: inline-block;
    margin-right: 20px;
}

figure {
    display: inline-block;
    width: 100%;
    height: 200px;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

#contacto {
    font-size: 1.2em;
}

ul li a {
    text-decoration: none;
    color: #337ab7;
}

ul li a:hover {
    color: #23527c;
}
