body {
    margin: 0;
    overflow: hidden; /* Evita barras de desplazamiento si la imagen es más grande que la ventana */
    font-family: Arial, sans-serif; /* Fuente por defecto */
    color: white; /* Color del texto */
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('fondo.jpg'); /* Asegúrate de que canary.webp esté en la misma carpeta */
    background-size: cover; /* Cubre todo el fondo sin distorsionar la imagen */
    background-position: center; /* Centra la imagen de fondo */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    z-index: -1; /* Envía el fondo detrás del contenido */
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ocupa toda la altura de la ventana */
    text-align: center;
}

h1 {
    font-size: 8vw; /* Tamaño de fuente responsivo */
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Sombra para mejor legibilidad */
}