/* Add your CSS code here */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    color: #fff;
    text-decoration: none;
}

nav .nav-links {
    list-style: none;
    display: flex;
}

nav .nav-links li {
    margin-left: 1rem;
}

nav .nav-links a {
    color: #fff;
    text-decoration: none;
}

nav .menu-toggle {
    background-color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    display: none; /* Hide the menu button initially */
}

/* Add responsive design using media queries */
@media (max-width: 768px) {
    nav .nav-links {
        display: none; /* Hide the navigation links initially */
    }

    nav .menu-toggle {
        display: block; /* Show the menu button on smaller screens */
    }

    nav .nav-links.show {
        display: flex;
        flex-direction: column;
    }
}

/* Add smooth transitions */
a,
button,
input {
    transition: all 0.3s ease;
}

a:hover,
button:hover,
input:hover {
    /* Add your hover effects here */
}
