body {
    background-color: #111;
    color: #eee;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
a {
    color:grey
}
header {
    background: #222;
    padding: 1rem;
    text-align: center;
}

nav a {
    color: #eee;
    margin: 0 1rem;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 2rem;
    max-width: 800px;
    margin: auto;
}

footer {
    background: #222;
    color: #aaa;
    text-align: center;
    padding: 1rem;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Animation styles */
#site-content {
    opacity: 0;
    transform: translateY(60px);
    transition: 
        opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1),
        transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}

#site-content.visible {
    opacity: 1;
    transform: translateY(0);
}