body {
            font-family: Arial, sans-serif;
            background-color: #121212;
            color: #ffffff;
            text-align: center;
            margin: 0;
            padding: 0;
        }
        .container {
            max-width: 900px;
            margin: auto;
            padding: 50px 20px;
            padding-bottom: 140px;
        }
        h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
            margin-top: 1px;
        }
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 30px;
        }
        .image-container {
            position: relative;
        }
        .gallery img {
            width: 100%;
            height: 160px; /* Puedes ajustar la altura según lo que necesites */
            object-fit: cover; /* Asegura que la imagen se recorte y mantenga la proporción */
            border-radius: 5px;
            transition: transform 0.3s ease-in-out;
        }
        .gallery img:hover {
            transform: scale(1.05);
        }
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 5px;
            font-size: 1.2em;
        }
        .image-container:hover .overlay {
            opacity: 1; /* Muestra el texto al pasar el ratón */
        }
        .back-button {
            display: inline-block;
            margin-top: 50px;
            background-color: #1e88e5;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 1.1em;
        }
        .back-button:hover {
            background-color: #1565c0;
        }
        footer {
            background-color: #121212;
            color: silver;
            text-align: center;
            padding: 10px;
            border-top: 2px solid #1565c0;
            box-shadow: 0px -5px 5px rgba(0,0,0,0.5);
            position: fixed;
            bottom: 0;
            width: 100%;
            box-sizing: border-box;
        }
		.logo {
            position: fixed;
            top: 5%; 
            left: 6%;
            width: 130px;
            height: auto;
            z-index: -1;
        }
        .logo2 {
            position: fixed;
            top: 5%;
            right: 6%;
            width: 130px;
            height: auto;
            z-index: -1;
        }