/* style.css */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212; /* Dark mode background */
    color: #e0e0e0;            /* Light grey text */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navigation Bar */
nav {
    background-color: #1e1e1e;
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #4da6ff; /* Light blue on hover */
}

/* Main Content Area */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center content */
    align-items: center;     /* Horizontally center content */
    padding: 2rem;
    text-align: center;
}

/* Typography */
h1 { font-size: 3.5rem; margin: 0; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
p { max-width: 600px; line-height: 1.6; color: #b0b0b0; }

/* Buttons */
.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 10px 20px;
    background-color: #4da6ff;
    color: #121212;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}