﻿@media (min-width: 992px) {
    .svg-background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        overflow: hidden;
    }

        .svg-background svg {
            width: 100%;
            height: 100%;
            animation: moveBG 30s linear infinite;
        }

    @keyframes moveBG {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-20px);
        }

        100% {
            transform: translateY(0);
        }
    }
}

h3.responsive-title {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Segoe UI', sans-serif;
    color: rgba(0, 191, 255, 0.85);
    letter-spacing: 1.2px;
    user-select: none;
    text-shadow: 0 0 8px rgba(0, 191, 255, 0.4);
    background: rgba(0, 191, 255, 0.12);
    padding: 10px 20px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: inline-block;
}

/* Responsive style for mobile devices */
@media (max-width: 600px) {
    h3.responsive-title {
        font-size: 32px; /* Smaller font size on small screens */
        padding: 8px 16px; /* Slightly reduced padding */
    }
}
