body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #121212;
    overflow: hidden;
    
    
}

.logo-container {
    width: 80%;
    max-width: 600px;
}

.exio-logo {
    width: 100%;
    height: auto;
}

.logo-text {
    font-family: 'Arial', sans-serif;
    font-size: 120px;
    font-weight: bold;
    fill: url(#logoGradient);
    stroke: url(#logoGradient);
    stroke-width: 2;
    animation: 
        textPulse 3s infinite alternate,
        textShift 5s infinite alternate;
}

@keyframes textPulse {
    0% { 
        transform: scale(0.95);
        opacity: 0.8;
    }
    100% { 
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes textShift {
    0% { 
        transform: translateX(-5px) skewX(-5deg);
    }
    100% { 
        transform: translateX(5px) skewX(5deg);
    }
}