h1, h2, h3, h4, h5, h6 {
  font-family: "Domine";
}

p {
  font-family: "Inter";
}

button {
  font-family: "Inter";
}

a {
  font-family: "Inter";
}

.dropdown-custom {
  position: relative;
  display: inline-block;
}

.dropdown-custom-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  padding-block: 12px;
  border-radius: 15px;
  border: 1px solid #2962FF;
  z-index: 1;
}

.dropdown-custom-content a {
  font-weight: 600;
  padding-inline: 16px;
  color: #52596a;
}

.dropdown-custom-content a:hover {
  font-weight: 600;
  color: #2962FF;
}

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