body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.landing-page {
    animation: slideDown 0.2s ease-out forwards;
    opacity: 0; /* Start with the element invisible */
    transform: translateY(-100%); /* Start above the screen */
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    background-color: #333;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 20px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
