@import url('https://fonts.googleapis.com/css2?family=Tomorrow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #0a0a0a;
    color: #68ef96;
    font-family: 'Tomorrow', monospace;
    padding: 2rem;
}

.typewriter {
    font-size: 1.5rem;
    min-height: 2rem;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 1.5rem;
    background-color: #68ef96;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glitch-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.glitch-image:hover {
    transform: scale(1.12);
}

.glitch-image:hover::before,
.glitch-image:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
}

.glitch-image:hover::before {
    animation: glitch-1 0.3s infinite;
    color: #ff00ff;
    z-index: -1;
}

.glitch-image:hover::after {
    animation: glitch-2 0.3s infinite;
    color: #00ffff;
    z-index: -2;
}

.links {
    display: flex;
    gap: 2rem;
}

.link {
    color: #68ef96;
    text-decoration: none;
    font-size: 1.3rem;
    padding: 0.5rem 1rem;
    border: 1px solid #68ef96;
    transition: all 0.3s ease;
}

.link:hover {
    background-color: #68ef96;
    color: #0a0a0a;
    box-shadow: 0 0 15px #68ef96;
}
