@keyframes glitch {
    0% { transform: skewX(0deg) translateY(0px); color: #4a9d6f; }
    25% { transform: skewX(-2deg) translateY(2px); color: #a0d995; }
    50% { transform: skewX(0deg) translateY(0px); color: #4a9d6f; }
    75% { transform: skewX(2deg) translateY(-2px); color: #6fb383; }
    100% { transform: skewX(0deg) translateY(0px); color: #4a9d6f; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes chromatic {
    0% { text-shadow: -3px 0 #ff00de, 3px 0 #00ffff, 0 0 20px rgba(0, 255, 255, 0.5); }
    50% { text-shadow: -2px 0 #00ffff, 2px 0 #ff00de, 0 0 20px rgba(255, 0, 222, 0.5); }
    100% { text-shadow: -3px 0 #ff00de, 3px 0 #00ffff, 0 0 20px rgba(0, 255, 255, 0.5); }
}

body{
    background: linear-gradient(135deg, #1a1a2e 0%, #2d3561 25%, #16213e 50%, #0f3460 75%, #1a1a2e 100%);
    background-size: 400% 400%;
    animation: pulse 8s ease-in-out infinite;
    color: #4a9d6f;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    padding: 50px;
    overflow-x: hidden;
    position: relative;
} 

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(255, 0, 255, 0.03) 0px,
        rgba(255, 0, 255, 0.03) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: -1;
}

h1 {
    animation: glitch 3s infinite;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

img{
    width: 300px;
    height: auto;
    margin: 20px;
    border-radius: 0px;
    float: center;
    filter: contrast(1.2) saturate(0.8) hue-rotate(-20deg);
    transition: all 0.3s ease;
    border: 2px solid #4a9d6f;
    box-shadow: 0 0 20px rgba(74, 157, 111, 0.5), inset 0 0 10px rgba(74, 157, 111, 0.2);
}

img:hover {
    filter: contrast(1.5) saturate(0.6) hue-rotate(-40deg) brightness(1.1);
    transform: skewY(-2deg) scaleX(0.98);
    box-shadow: 0 0 30px rgba(160, 217, 149, 0.8), inset 0 0 15px rgba(160, 217, 149, 0.4), -5px 5px 15px rgba(255, 0, 222, 0.3);
}

h1#title{
    font-size: 70px;
    margin-bottom: 20px;
    animation: chromatic 2s infinite;
}

p {
    color: #a0d995;
    animation: glitch 4s infinite;
    font-size: 1.1em;
    letter-spacing: 0.02em;
}



