body {
    font-family: 'Roboto Mono', monospace;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #0f0;
    /* overflow: hidden;  Remove this line to allow scrolling */
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0f0, #00f, #f0f);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    z-index: -1;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

header {
    background-color: #111;
    color: #0f0;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #0f0;
    text-shadow: 0 0 5px #0f0;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    margin: 5px 0 0;
    font-size: 1.2em;
}

main {
    padding: 20px;
}

section {
    background-color: rgba(17, 17, 17, 0.9);
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #0f0;
}

section h2 {
    margin-top: 0;
    border-bottom: 1px solid #0f0;
    padding-bottom: 10px;
    text-shadow: 0 0 5px #0f0;
    font-size: 1.8em; /* Increased font size for section headers */
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
}

ul li a {
    text-decoration: none;
    color: #0f0;
    font-size: 1.3em; /* Increased font size for links */
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

ul li a:hover {
    color: #0ff;
    text-shadow: 0 0 10px #0ff;
}

footer {
    background-color: #111;
    color: #0f0;
    text-align: center;
    padding: 10px 0;
    border-top: 2px solid #0f0;
    position: relative; /* Changed from fixed to relative */
    width: 100%;
    text-shadow: 0 0 5px #0f0;
    font-size: 1.2em;
}

.blinking-cursor {
    font-weight: bold;
    font-size: 1.2em;
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {
    from, to {
        color: transparent;
    }
    50% {
        color: #0f0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    header p {
        font-size: 1em;
    }
    section {
        padding: 15px;
    }
    section h2 {
        font-size: 1.5em; /* Adjusted for responsiveness */
    }
    ul li a {
        font-size: 1.1em; /* Adjusted for responsiveness */
    }
}
