body {
    background: #02050a;
    color: #00ffcc;
    font-family: 'Courier New', monospace;
    text-align: center;
    padding: 0;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1 {
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 2em;
    animation: glitch 3s infinite;
}

.container {
    flex: 1;
    padding: 5% 2%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    animation: flicker 4s infinite alternate;
    position: relative;
}

.hamburger-menu {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
}

#menu-toggle {
    display: none; /* Hide the checkbox */
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    background-color: #02050a;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
}

.menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #222;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    width: 150px;
}

.menu li {
    padding: 10px;
    border-bottom: 1px solid #444;
}

.menu li a {
    color: white;
    text-decoration: none;
    display: block;
}

/* Show menu when checkbox is checked */
#menu-toggle:checked + .menu-icon + .menu {
    display: block;
}


footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 10px;
}

@keyframes flicker {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

@keyframes glitch {
    2%, 64% {
        transform: translate(2px, 0) skew(0deg);
    }
    4%, 60% {
        transform: translate(-2px, 0) skew(0deg);
    }
    62% {
        transform: translate(0, 0) skew(5deg);
    }
}
