
/* Style the top navigation bar */
.navbar {
    display: flex;
    background-color: #333;
    position: sticky;
    top: 0;
}

/* Style the navigation bar links */
.navbar a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
}

/* Change color on hover */
.navbar a:hover {
    background-color: #ddd;
    color: black;
}
/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
    .navbar {
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }
}