
body {
    margin: 0;
    padding: 20px;
    font-family: 'Courier New', Courier, monospace;
    background-color: #0f0f0f;
    color: #21af21;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: left;
}

h1 {
    font-size: 0.5rem;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(63, 255, 63, 0.5);
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 1200px;
}

li {
    margin-bottom: 15px;
    font-size: 1rem;
    word-wrap: break-word;
    padding: 5px;
    border-left: 4px solid #21af21;
    background: rgba(33, 175, 33, 0.1);
    border-radius: 5px;
    transition: 0.3s;
}

li:hover {
    background: rgba(33, 175, 33, 0.3);
}

code {
    border-radius: 10px;
    background-color: #1f1f1f;
    padding: 1px 15px;
    border-radius: 5px;
    color: #3eff3e;
    font-size: 1.1rem;
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    border: 2px solid #21af21;
    background-color: transparent;
    color: #21af21;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px #21af21;
}
.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    max-width: 900px;
}

.tool-card {
    background: rgba(33, 175, 33, 0.1);
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, background 0.3s;
}

.tool-card:hover {
    background: rgba(33, 175, 33, 0.3);
    transform: scale(1.05);
}
.language-bash{
    border-radius: 10px;
    margin-bottom: 0%;
}

.language-python{
    border-radius: 10px;
}


@keyframes glitch {
    0% {
        text-shadow: 2px 2px #ff0000, -2px -2px #00ff00;
    }
    25% {
        text-shadow: -2px -2px #ff0000, 2px 2px #00ff00;
    }
    50% {
        text-shadow: 2px -2px #ff0000, -2px 2px #00ff00;
    }
    75% {
        text-shadow: -2px 2px #ff0000, 2px -2px #00ff00;
    }
    100% {
        text-shadow: 2px 2px #ff0000, -2px -2px #00ff00;
    }
}

@keyframes glitch-flicker {
    0%, 100% { opacity: 1; }
    40% { opacity: 0.8; }
    60% { opacity: 1; }
    80% { opacity: 0.6; }
}

h1 {
    font-family: 'Fira Code', monospace;
    font-size: 2rem;
    color: #3eff3e;
    /* text-transform: uppercase; */
    position: relative;
    animation: glitch 0.2s infinite alternate, glitch-flicker 1.5s infinite alternate;
}
.headname{
    font-family: 'Fira Code', monospace;
    font-size: 3rem;
    color: #3eff3e;
    text-transform: uppercase;
    position: relative;
    animation: glitch 0.2s infinite alternate, glitch-flicker 1.5s infinite alternate;
}
/* Extra glitch layers */
h1::before,
h1::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
}

h1::before {
    left: 2px;
    text-shadow: -2px 0 red;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    animation: glitch 0.2s infinite alternate-reverse;
}

h1::after {
    left: -2px;
    text-shadow: -2px 0 cyan;
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
    animation: glitch 0.2s infinite alternate;
}
