 nav {
      display: flex;
      align-items: center;
    }
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }
    .menu-toggle div {
      width: 25px;
      height: 3px;
      background-color: #fff;
      margin: 4px 0;
    }
 nav ul {
      list-style: none;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
    }
    nav ul li {
      margin-left: 1.5rem;
    }
    nav ul li a {
      color: skyblue;
      text-decoration: none;
      font-weight: bold;
    }
    nav ul li a:hover {
      color: #00ccff;
    }


    /*MOBILE*/
      @media (max-width: 650px) {
      .menu-toggle {
        display: flex;
      }
      nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #000;
      }
      nav ul.show {
        display: flex;
      }
      nav ul li {
        margin: 1rem;
        text-align: right;
      }

    
  }

    