body {
  font-family: "Open Sans", sans-serif;
}

h1,
h2,
h3,
h4 {
  font-family: "Merriweather", serif;
}

.content-area ul,
.content-area ol {
  margin-left: 1.25rem;
  margin-bottom: 1.25rem;
}

.content-area ul {
  list-style-type: disc;
}

.content-area ol {
  list-style-type: decimal;
}

.content-area p {
  margin-bottom: 1.25rem;
  text-align: left;
}

/* Nav Menu Links */
.menu-link {
  color: #333333;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-link:hover {
  color: #E0115F;
}

/* Base Primary Button */
.btn-primary {
  display: flex;
  width: auto;
  min-width: min-content;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  overflow: hidden;
  border-radius: 0.5rem;
  height: 2.5rem;
  padding: 0 1rem;
  background-color: #E0115F;
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 15px -3px rgba(224, 17, 95, 0.2), 0 4px 6px -4px rgba(224, 17, 95, 0.2);
}
.btn-primary:active {
  transform: scale(0.95);
}

/* Language Selector */
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #333333;
  font-size: 0.875rem;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  border: 1px solid #e5e7eb;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.lang-btn:hover {
  color: #E0115F;
}
.lang-btn:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.lang-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  text-align: left;
  font-size: 0.875rem;
  color: #333333;
  width: 100%;
}
.lang-menu-item:hover {
  background-color: #f3f4f6;
}

/* Footer elements */
.footer-link {
  font-size: 0.875rem;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  color: inherit;
}
.footer-link:hover {
  color: #E0115F;
}
