body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #222;
    color: #ddd;
    height: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

header {
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    color: #58D68D;  /* Futuristic green */
    text-shadow: 0 0 10px #58D68D;
}

main p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 600px;
}

