body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    text-align: center;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/ClinicaFondoEscritorio.jpg');
    background-size: cover;
    background-position: center center;
    animation: pan 60s linear infinite alternate;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.text-background {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 20px 40px;
    border-radius: 10px;
    max-width: 80%;
    box-sizing: border-box;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    animation: aura-glow 3s infinite alternate;
}

.logo-new {
    max-width: 250px;
    margin-bottom: 20px;
}

@keyframes aura-glow {
    0% {
        box-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
    }
    50% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 1), 0 0 8px rgba(255, 255, 255, 0.7);
    }
    100% {
        box-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
    }
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.5em;
    margin-top: -10px;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
}

@keyframes pan {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* Tablet and smaller desktops */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2em;
    }

    .subtitle {
        font-size: 1.2em;
    }

    p {
        font-size: 1em;
    }

    .text-background {
        padding: 20px 30px;
        max-width: 90%;
    }

    .logo-new {
        max-width: 180px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    h1 {
        font-size: 1.3em;
    }

    .subtitle {
        font-size: 0.9em;
    }

    p {
        font-size: 0.7em;
    }

    .text-background {
        padding: 10px 15px;
        max-width: 95%;
    }

    .logo-new {
        max-width: 100px;
        margin-bottom: 10px;
    }
}
