body {
    font-family: Helvetica, Arial, "Trebuchet MS", Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #111;
    padding: 1rem;
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: antiquewhite;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
    padding-bottom: 60px; /* Adjust this value as needed */
}

h1 {
    color: antiquewhite;
}

footer {
    background-color: #111;
    color: #ffffff;
    text-align: center;
    padding: 1rem;
    bottom: 0;
    width: 100%;
    height: 50px; /* Adjust this value as needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add more styles as needed for specific pages */