html, body {
    height: 100%;
}

body {
    background-image: url('../images/FondoDiente.png');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center center;
    background-color: oldlace;
}

@media only screen and (max-width: 400px) {
    body {
        background-size: contain;
    }
}

app {
    display: block;
    height: 100%;
}

.header-logo {
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask: url('../images/Logo.svg');
    mask: url('../images/Logo.svg');
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    width: 180px;
    height: 24px;
    animation: giroscopio 5s ease-in-out infinite;
}
@keyframes giroscopio {
    0% {
        transform: rotateY(0deg); /* La imagen inicia en su posición normal */
    }

    50% {
        transform: rotateY(180deg); /* La imagen gira 180 grados, quedando invertida */
    }

    100% {
        transform: rotateY(360deg); /* La imagen completa su rotación y regresa a su posición normal */
    }
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}