.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #242424;
  color: white;
  left: 5px;
  top: 5px;
  padding: 0.75rem 1.5rem;
  font-family: "Source Sans 3", sans-serif;
  border-radius: 8px;
  border: #333333 solid 1px;
}

.navbar-title {
  position: relative;
  left: 15px;
  font-family: "Source Sans 3", sans-serif;
}
.navbar-title button{
  font-family: "Source Sans 3", sans-serif;
  font-weight: 600;
}

.navbar-title #navarrow {
  position: absolute;
  top: 50%;
  transform: translate(0%,-50%);
}

.navbar-title #icon {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-100%,-50%);
}

.dropdown-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  border-radius: 8px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: #333;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  top: 100%;
  left: 0;
  border-radius: 0.25rem;
  z-index: 1000;
  width: 300px;
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: white;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background-color: #444;
}

.navbar-title:hover .dropdown-menu {
  display: block;
}

.navbar-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-links a {
  color: white;
  text-decoration: none;
}

.navbar-links a:hover {
  text-decoration: underline;
  color: #79a8f3
}


body {
  background-color: #1e1e1e;
  color: white;
  font-family: "Source Sans 3", sans-serif;
}

#optiona{
  font-size: 32px;
  font-weight: bold;
  color: #d5d5d5;
  text-decoration: none;
}
#optiona:hover{
  text-decoration: underline;
  color: white;
}

.footer {
  padding-top: 50px;
  padding-bottom: 50px;
  border: none;
  margin: 0;
  display: inline-block;
  position: absolute;
  text-align: center;
  width: 100%;
  left: 0;
  right: 0;
  background-color: #242424;
}

a {
  text-decoration: none;
  color: #79a8f3;
}

a:hover {
  color: white;
  text-decoration: underline;
}
