body {
    font-family: 'Courier New', Courier, monospace; /* Monospace font for a tech feel */
    margin: 0;
    padding: 20px;
    background-color: #1a1a1a; /* Dark background */
    color: #e0e0e0; /* Light gray text for contrast */
}

header {
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.8em;
    color: #00ffcc; /* Neon teal for header */
    text-shadow: 2px 2px 4px rgba(0, 255, 204, 0.5); /* Glow effect */
}

p {
    font-size: 1.2em;
    color: #b0b0b0; /* Softer gray for paragraph text */
}

h2 {
    font-size: 2em;
    margin-top: 40px;
    color: #ffcc00; /* Neon yellow for section headers */
    text-shadow: 1px 1px 2px rgba(255, 204, 0, 0.8); /* Glow effect */
}

ul {
    list-style-type: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto; /* Center the ul for better layout */
}

li {
    margin: 15px 0; /* More space between items */
}

a.button {
    text-decoration: none;
    color: #000; /* Black text on buttons */
    background-color: #ff00ff; /* Neon magenta buttons */
    padding: 12px 20px;
    border-radius: 5px;
    display: block; /* Make the link full width */
    transition: background-color 0.3s, transform 0.2s; /* Animation on hover */
    text-align: center; /* Center text */
    box-shadow: 0 2px 5px rgba(255, 0, 255, 0.5); /* Shadow for depth */
}

a.button:hover {
    background-color: #cc00cc; /* Darker magenta on hover */
    transform: translateY(-2px); /* Slight lift on hover */
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.2em;
    }
    
    h2 {
        font-size: 1.7em;
    }
    
    p {
        font-size: 1em;
    }
}
