#nav-links{
    list-style-type: none;
}
#nav-links button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #dbf8ff;
    font-family: outfit;
    font-size: 18px;
}
#nav-links li{
    float: left;
    margin-right: 10px;
    padding: 10px;
}
#nav-links a{
    font-size: 18px;
    color: #dbf8ff;
    font-family: outfit;
    padding: 10px;
}
#nav-links a:hover{
    background-color: #8488a2;
}
#nav-links li:hover{
    background-color: #8488a2;
}
header{
    padding: 10px;
    color: #dbf8ff;
    display: flex;
    justify-content: space-between;
    background-color: #252a31;
    align-items: center;
    box-shadow: 0px 5px 4px #13191e;
}
#name{
    font-size: 30px;
    margin-left: 10px;
    font-family: magic sky;
}
#name a{
    color: #dbf8ff;
}
.dropdown {
    float: right;
    position: relative;
}

.dropdown .dropbtn {
  cursor: pointer;
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; /* Position the top edge below the button */
  left: 0;    /* Align the left edge with the button */
  background-color: #252a31;
  box-shadow: 0px 0px 5px black;
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #5a6778;
}

.show {
  display: block;
}