/* Reset some default styling */
body,
h1,
h2,
h3,
p,
ul {
  color: #cbdeea;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(135deg, #2c1886, #1f0738);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

header {
  background: #08021f;
  color: #fff;
  padding: 5px 10px;
}

.container {
  display: flex;
  justify-content: center;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 960px;
}

.brand {
  margin-right: auto; /* Firmenname ganz links ausrichten */
}

header nav ul {
  list-style: none;
  text-align: center;
}

header nav ul li {
  display: inline;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
}

section {
  padding: 30px 0;
}

section .content {
  text-align: center;
}

.rocket {
  width: 50px; /* Adjust size as needed */
  height: 50px; /* Adjust size as needed */
  background-image: url("../Code/images/6437619.webp"); /* Replace 'rocket.png' with your rocket image */
  background-size: cover;
  position: absolute;
  top: -100px; /* Start position above the section */
  left: 50%; /* Center horizontally */
  transform: translateX(-50%); /* Center horizontally */
}

section h1,
section p {
  margin-bottom: 20px;
}

footer {
  background: #08021f;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}
