/* Grundlegende Einstellungen */
body {
  background-color: #ffffff;
  font-family: sans-serif;
  color: #333333;
  margin: 0;
  padding: 20px;
}

/* Navigation */
/* Navigation */
nav {
  background-color: #eafdfe;
  padding: 0px 20px;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo oben links */
.nav-logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 0;
}

.nav-logo a {
  margin: 0;
  padding: 0;
  background: none;
}

/* Navigation rechts */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.nav-links a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  margin: 0 15px;
  padding: 5px 10px;
  border-radius: 4px;
}

.nav-links a:hover {
  background-color: #e6f0fa;
}

.nav-links a.aktiv {
  background-color: #0066cc;
  color: white;
}

nav a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  margin: 0 15px;
  padding: 5px 10px;
  border-radius: 4px;
}

nav a:hover {
  background-color: #e6f0fa;
}

nav a.aktiv {
  background-color: #0066cc;
  color: white;
}

/* Header */
header {
  background-color: #0066cc;
  color: white;
  padding: 30px;
  text-align: center;
  border-radius: 8px;
}

header h1 {
  margin: 0 0 10px 0;
}

header p {
  margin: 0px;
  font-size: 1.1rem;
}

/* Hauptbereich */
main {
  max-width: 800px;
  margin: 20px auto;
}

section,
.infobox,
.zitat-box {
  background: rgb(255, 255, 255);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Spezielle Boxen */
.infobox {
  background-color: #e6f0fa;
}

.infobox h3 {
  margin-top: 0;
  color: #0066cc;
  font-size: 2rem;
}
.infobox h2,
.infobox p {
  border: none;
  margin-top: 0;
  margin-bottom: 0;
}

.zitat-box {
  border-left: 50px solid #28a745;
  background-color: #0000e8;
}

h2 {
  color: #0066cc;
  border-bottom: 2px solid #f4f4f9;
  padding-bottom: 5px;
  margin-top: 0px;
}

/* Links */
a {
  color: #0066cc;
}

/* Code-Tags im Text */
code {
  background-color: #eee;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  color: #d63384;
}

/* Listen */
ul,
ol {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

/* Bilder */
img {
  max-width: 60%;
  height: auto;
  border-radius: 6px;
}

/* Formularelemente */
form input[type="text"],
form textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

form button {
  background-color: #0066cc;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

form button:hover {
  background-color: #004d99;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 40px;
  color: #777777;
  font-size: 0.9rem;
} /* Kreis für die Bubble-Animation */
.bubble_container {
  position: relative;
  height: 800px;
  width: 100%;
}

/* Die Bubbles */
.bubble {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 100px;
  height: 100px;
  border-radius: 50%;

  background-color: #e9f1f3;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* Abstand vom Mittelpunkt */
  margin-left: -50px;
  margin-top: -50px;

  animation: orbit 12s linear infinite;
}

/* Kreisbewegung */
@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(350px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(350px) rotate(-360deg);
  }
}

/* Farben */
#bubble_1 {
  color: #32a287;
  animation-delay: 0s;
}

#bubble_2 {
  color: #32a287;
  animation-delay: -1.2s;
}

#bubble_3 {
  color: #eac435;
  animation-delay: -2.4s;
}

#bubble_4 {
  color: #32a287;
  animation-delay: -3.6s;
}

#bubble_5 {
  color: #ba1200;
  animation-delay: -4.8s;
}

#bubble_6 {
  color: #ba1200;
  animation-delay: -6s;
}

#bubble_7 {
  color: #32a287;
  animation-delay: -7.2s;
}

#bubble_8 {
  color: #32a287;
  animation-delay: -8.4s;
}

#bubble_9 {
  color: #eac435;
  animation-delay: -9.6s;
}

#bubble_10 {
  color: #ba1200;
  animation-delay: -10.8s;
}
.section_container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section_container section {
  width: 60%;
}
