body {
        display: grid;
        margin: 0;
        font-family: Arial, sans-serif;
        justify-content: center;
        height: 100vh;
        background-image: url('https://tumboabroad.com/images/background-tumbo.png'); /* Ruta de tu imagen */
        background-size: cover; /* Ajusta la imagen para cubrir todo el fondo */
        background-repeat: no-repeat; /* Evita que la imagen se repita */
        background-position: center; /* Centra la imagen */
        background-attachment: fixed; /* Hace que el fondo permanezca fijo al hacer scroll */
        }

.logo {
        display: flex;
        justify-content: center;            
        }

.logo img {
        align-items: center;
        width: auto;
        height: 60%;
        margin-top: 5%;
        }

.container {
        object-fit: cover;
        }


.container img {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        object-fit: cover; /* Ajusta la imagen para llenar el contenedor manteniendo proporciones */
        border-radius: 10px;
        }

.titulo {
        text-align: center;
        padding: 20px;
        color: #fff;
        }

.titulo h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
        color: white;
        }

.texto p {
        text-align: center;
        font-size: 1.2rem;
        margin-bottom: 20px;
        color: white;
        }



@media (max-width: 600px) {
        .texto h1 {
                font-size: 2rem;
            }

        .texto p {
                font-size: 1rem;
            }

        .container img {
            width: 100%;
            height: 100%;
            border-radius: 10px;
            object-fit: cover; /* Ajusta la imagen para llenar el contenedor manteniendo proporciones */
        }
        }