/* Add this to your "styles.css" file */

/* Style the navigation bar as tabs */

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    background-color: #333;
}

nav li {
    flex: 1;
}

nav a {
    display: block;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #444;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #555;
}

/* Style the selected tab */
section {
    display: none;
    padding: 20px;
    background-color: #fff;
}

section.active {
    display: block;
}

h1,
h2,
p {
    font-family: Arial, Helvetica, sans-serif;
}

.hidden {
    display: none;
}