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

.topnav {
    overflow: hidden;
    background: radial-gradient(rgb(114, 208, 150) 0%, rgb(67, 110, 90) 100%);
}

.topnav .logo {
    color: #f2f2f2;
    font-weight: bold;
    font-size: 17px;
    display: flex;
    align-items: center;
    padding: 14px 16px;
}

.topnav .logo img {
    margin-right: 10px;
}

.topnav .menu-items {
    display: flex;
}

.topnav .menu-items a {
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    border-radius:50% 50% 0 0;
}

.topnav .menu-items a:hover {
    background-color: #ddd;
    color: black;
}

.topnav .menu-items a.active {
    background-color: #04AA6D;
    color: white;
}

/* Add these CSS styles for the mobile menu */
.topnav .icon {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: #f2f2f2;
  font-size: 20px;
  cursor: pointer;
}


.topnav .popup-menu {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    width: 100%;
    background-color: #333;
    z-index: 1000;
}

.topnav .popup-menu a {
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav .popup-menu a:hover {
    background-color: #ddd;
    color: black;
}

.topnav .popup-menu a.active {
    background-color: #04AA6D;
    color: white;
}

@media (max-width: 767px) {
    .topnav .menu-items {
        display: none;
    }

    .topnav .icon {
        display: flex;
    }

    .topnav.responsive .menu-items {
        display: flex;
        flex-direction: column;
    }

    .topnav.responsive .menu-items a {
        padding: 8px 16px;
    }

    .topnav.responsive .menu-items a.active {
        background-color: #333;
    }

    .topnav.responsive .popup-menu {
        display: block;
    }
}
