body {
    background: linear-gradient(45deg, #0f0c29, #302b63, #24243e, #0f0c29);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding: 0;
}

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

.main-title {
    font-size: 3.5em;
    text-align: center;
    text-shadow: 0 0 15px #00ffea, 0 0 30px #00ffea, 0 0 45px #00ffea;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 15px #00ffea, 0 0 30px #00ffea, 0 0 45px #00ffea;
    }
    to {
        text-shadow: 0 0 25px #00ffea, 0 0 40px #00ffea, 0 0 60px #00ffea;
    }
}

.service-list li {
    margin: 15px 0;
    font-size: 1.3em;
    text-shadow: 0 0 8px #00ffea;
    transition: transform 0.3s ease;
    text-align: center;
}
h3 {
    text-align: center;
}

.service-list li:hover {
    transform: translateX(10px);
}

.service-list {
    list-style-type: none;
    padding: 0;
}

.service-list li {
    margin: 10px 0;
    font-size: 1.2em;
    text-shadow: 0 0 5px #00ffea;
}

.service-list img {
    align-items: center;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}