.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 50;
  border-bottom: 2px solid rgb(88, 17, 97);
  font-family: Helvetica;
}

.header-flex {
  width: 95vw;
  max-width: 1080px;
  margin: auto;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar a{
  position: relative;
  font-size: 18px;
  color: black;
  font-weight: 500;
  text-decoration: none;
  margin-left: 40px;
}

.wide-links a::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
  background: rgb(163, 27, 181);
  transition: 0.3s;
}

.navbar a:hover::before {
  width: 100%;
  height: 2px;
  background: rgb(163, 27, 181);
}

.dropdown {
  display: none; /* Initially hide the dropdown content */
  position: relative;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-button {
  background-color: rgb(163, 27, 181);
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;

}

.dropdown-button:hover {
  background-color: rgb(88, 17, 97);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgb(163, 27, 181);
  top: 100%;
  left: -107px;
  min-width: 160px;
  z-index: 10;
}

.dropdown-content a {
    display: block;
    padding: 10px;
    color: white;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: rgb(88, 17, 97);
}

/* Show dropdown menu when clicked */
.dropdown-button:focus + .dropdown-content,
.dropdown-button:hover + .dropdown-content {
    display: block;
}

.logo {
  display: flex;
  align-items: center; /* Aligns text vertically to the center of the image */
  line-height: 1rem;
  text-decoration: none;
  color: black;
}

.marcia-logo-symbol {
  margin-right: 10px; /* Adds space between the image and the text */
  width: 50px; /* Adjust the size as needed */
  height: auto;
}