body {
    font-family: Arial, sans-serif;
    background-color: #a2aeeb;
    margin: 0;
    padding: 20px;
    text-align: center;
    color: #333;
    box-sizing: border-box;
    overflow-x: hidden;
    min-height: 100vh;
    display: flexbox;

}

h1.titulo {
    color: #000000;
    text-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: bold;
    font-family: 'Georgia', serif;
}

p.descripcion {
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: #000000;
    font-size: 18px;
    font-style: italic;
    font-family: 'Times New Roman', serif;
    border-bottom: 2px solid #ccc;
    padding-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.galeria {
    display: flex;
    justify-content: center;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    margin-bottom: 50px;
    border-bottom: 2px solid #ccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.galeria::-webkit-scrollbar {
    height: 8px;
    background-color: #f1f1f1;
    border-radius: 4px;
}

.galeria::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

.galeria img.logo {
    width: 80px; 
    height: auto;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.galeria img.logo:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.auto-section {
    display: none; 
    margin-bottom: 50px;
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.auto-section.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.auto-section img.auto {
    width: 400px;      
    height: 250px;     
    object-fit: cover; 
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.auto-section p {
    max-width: 600px;
    margin: 0 auto;
    color: #333;
    font-weight: bold;
    line-height: 1.4;
    font-size: 16px;
    font-family: 'Verdana', sans-serif;
    text-align: justify;
    text-justify: inter-word;
    padding: 0 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 15px;
    border: 1px solid #ddd;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: background-color 0.3s;
}