/* Reset básico para eliminar márgenes por defecto */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    text-align: center; /* Centra el título */
    max-width: 800px;
    width: 100%;
}

h1 {
    margin-bottom: 30px;
    color: #333;
}

.image-wrapper {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    
    /* Centrado de la imagen dentro del div */
    display: flex;
    justify-content: center;
}

img {
    max-width: 100%; /* Evita que la imagen se salga del contenedor */
    height: auto;    /* Mantiene la proporción */
    display: block;
}