 /* Dropdown Button  */
.dropbtn {
  background-color: rgb(0, 0, 0);
  color: white;
  font-size: 16px;
  padding:16px;
  border: none;
  cursor: pointer;
  /* z-index: 999; */
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: gray;
}

/* The container <div> - needed to position the dropdown content */

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  /* display: none; */
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

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

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

.menu-bars {
  width: 35px;
  height: 5px;
  background-color: black;
  margin: 6px 0;
}

.container {
  display: inline-block;
  cursor: pointer;
}

.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: rgb(108, 4, 108);

  margin: 6px 0;
  transition: 0.4s;
}

/* Rotate first bar */
.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px) ;
  transform: rotate(-45deg) translate(-9px, 6px) ;
  background-color: white;

}

/* Fade out the second bar */
.change .bar2 {
  opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px) ;
  transform: rotate(45deg) translate(-8px, -8px) ;
  background-color: white;
}

@media only screen and (min-width: 780px){
/* Nav */
.dropdown {
  display: block;
  position: static;
  width: 30vw;
}
.dropdown-content {
  background-color:transparent ;
  display: block;
  position: static;
  min-width: 160px;
  width: 100%;
  box-shadow: 0 0 0 0 rgb(0,0,0,0);
  z-index: 1;
}
nav ul {
  display: flex;
  flex-direction: row;
  padding: 0;
  list-style-type: none;
  margin: 0;
}
nav ul li:first-of-type {
  border-top: 0px solid rgba(0,0,0,0);
  padding: 20px;
}

nav ul li:last-child a{
  background-color: transparent;
  border: 4px solid black;
  border-radius: 5px ;
  color: black;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
}
nav ul li {
  border-bottom: 0px solid rgba(0,0,0,0);
  padding: 20px;
}
.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

nav ul li a {
  color: rgb(0,0,0,0);
  text-decoration: none;
}

}
