.nav {
             background-color: #017575;
         }

.wrapper {
     width: 100%;
}

.center {
    float: left;
    margin-left: 100%;
}

.right {
    float: right;
}
   .dropdown {
                position: relative;
                display: inline-block;
            }

            /* Style the dropdown menu items */
            .dropdown-content {
                display: none;
                position: absolute;
                background-color: #008080;
                min-width: 100px;
                z-index: 1;
            }

            /* Style the dropdown menu links */
            .dropdown-content a {
                color: black;
                padding: 12px 16px;
                text-decoration: none;
                display: block;
            }

            /* Style the dropdown menu links on hover */
            .dropdown-content a:hover {
                background-color: #0000FF;
            }

            /* Show the dropdown menu when hovering over the dropdown */
            .dropdown:hover .dropdown-content {
                display: block;
            }

            /* Style the nested dropdown menu */
            .nested-dropdown {
                position: relative;
            }

            /* Style the nested dropdown menu items */
            .nested-dropdown-content {
                display: none;
                position: absolute;
                background-color: #008080;
                min-width: 100px;
                left: 100%;
                top: 0;
                z-index: 1;
            }

            /* Show the nested dropdown menu when hovering over the parent item */
            .nested-dropdown:hover
                .nested-dropdown-content {
                display: block;
            }
            
  
         nav {
             background-color: #017575;
             width: 100%;
         }