<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    background: url('./img/bg_mb.webp') no-repeat center center;
    background-size: cover;
}

@media (min-width: 768px) {
    body {
        background: url('./img/bg_desktop.webp') no-repeat center center;
        background-size: cover;
    }
}

.animate-pulse-custom {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}</pre></body></html>