@charset "utf-8";
/* CSS Document */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  /*background-color: #333;*/
  border-bottom: 3px solid rgba(255,204,0,1);
  color: #fff;
}

.logo {
  font-size: 24px;
}

.menu-toggle {
  font-size: 24px;
  cursor: pointer;
}

.menu,#menu {
  display: none;
}

@media screen and (min-width: 820px) {
  .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
	 list-style: none; /* remove bullet points */
  }
  .menulinks{
    list-style: none !important; /* remove bullet points */

  }
  
  .menu li {
    margin: 0 10px;
  }
  
  .menu-toggle {
    display: none;
  }
}
