h1 {
  font-size: 65px;
  font-family: 'Source Sans Pro', serif;
}

.title {
  font-size: 25px;
  font-family: 'Source Sans Pro', serif;
}

h2 {
  background-color: #2e2e4b;
  color: #47bfff;
  font-size: 30px;
  font-family: 'Source Sans Pro', serif;
}

h3 {
  font-size: 25px;
  font-family: 'Source Sans Pro', serif;
  font-weight: bold
}

h4 {
  font-size: 20px;
  font-family: 'Source Sans Pro', serif;
  font-weight: bold
}

body {
  font-size: 18px;
  font-family: 'Source Sans Pro', serif;
  background-color: #ffffff;
  margin: 500;
  padding: 100;
  line-height: 1.6;
}

.navbar-nav .nav-link {
  font-size: 25px;
  font-weight: bold;
  font-family: 'Source Sans Pro', serif;
}


/* Schriftart und -farbe für alle Dropdown-Items ändern */
.dropdown-item {
  font-family: 'Source Sans Pro', sans-serif;
  /* Schriftart ändern */
  font-size: 18px;
  /* Schriftgröße ändern */
  color: #333333;
  /* Schriftfarbe ändern */
}

.dropdown-menu {
  background-color: #ffffff;
  /* Dunkles Grau oder deine gewünschte Farbe */
}

/* Schriftfarbe bei Hover ändern (wenn der Benutzer mit der Maus über einen Eintrag fährt) */
.dropdown-item:hover {
  color: #47bfff;
  /* Eine andere Farbe bei Hover */
  background-color: #17183f;
  /* Hintergrundfarbe bei Hover */
}

