body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #0a0a0a;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

img {
    width: 150px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

h1 {
    font-size: 3rem;
    margin-top: 20px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.services {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.service {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service h3 {
    margin: 0;
    font-size: 1.5rem;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
