@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
    background-color: #0a0a0a;
    color: #00ff00;
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00;
}

header, main, footer {
    width: 80%;
    max-width: 900px;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #00ff00;
    box-shadow: 0 0 15px #00ff00;
    background-color: rgba(0, 20, 0, 0.8);
    border-radius: 10px;
}

h1, h2 {
    color: #00ffff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff;
}

p {
    text-align: center;
    font-size: 1.2em;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin: 15px 0;
    text-align: center;
}

a {
    color: #ffff00;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s, text-shadow 0.3s;
    text-shadow: 0 0 3px #000000, 0 0 5px #ffff00;
}

a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
}

footer p {
    font-size: 0.8em;
    color: #888;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons li {
    margin: 0;
}

.social-icons a {
    font-size: 2em;
}
