/* Dropdown Button */
.dropbtn {
    border: none;

}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color:  black;
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    background-color: #1c1c1c;
    text-decoration: none;
    display: block;
    border: none;
    font-weight: 90;
    padding: 0;
}


/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: RGBA(149, 117, 205, 0.6);}

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

.dropdown:hover {
  background-color: RGBA(149, 117, 205, 0.6);
}

/* Change the background color of the dropdown button when the dropdown content is shown */



@media screen and (max-width: 980px) {
.dropdown .dropdown-content {
  display: block !important;
  font-size: 0.8em;
  float: center;
  text-align: right;
  width: 16em;
}

}
