@charset "utf-8";

@font-face {
  font-family: 'Orbitron';
  src: url('../fonts/Orbitron-Regular.woff2') format('woff2'),
       url('../fonts/Orbitron-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  background: radial-gradient(ellipse at center, #000055 0%, #000000 100%);
  color: #f0f0f0;
  font-family: 'Orbitron', sans-serif;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 40px 20px 20px;
}

.logo {
  max-width: 600px;
  margin-bottom: 10px;
}

h1 {
  font-size: 2.5em;
  margin: 0;
  text-shadow: 0 0 10px #00ffff;
}

.tagline {
  font-style: italic;
  color: #ccccff;
  text-shadow: 0 0 8px #4444ff;
  margin-top: 10px;
}

nav {
  background-color: #111;
  padding: 10px 0;
  text-align: center;
  box-shadow: 0 0 10px #00ffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; /* Abstand zwischen den Zeilen */
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 30px;
}

nav a {
  color: #00ffff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffffff;
}

a {
  color: #00ffff;
}

a:hover {
  color: #ffffff;
}

main {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}

section {
  margin-bottom: 60px;
  animation: fadeIn 1.5s ease-out;
}

h2 {
  font-size: 1.8em;
  color: #00ffff;
  margin-bottom: 10px;
  text-shadow: 0 0 6px #00ffff;
}

h3 {
  font-size: 1.5em;
  color: #FFFFFF;
  margin-bottom: 10px;
  text-shadow: 0 0 6px #00ffff;
}

ul {
  padding-left: 20px;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #888;
  border-top: 1px solid #222;
  margin-top: 40px;
}

.fade-in{
  animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

#backToTop {
  position: fixed;
  right: 20px;
  bottom: 40px;
  background-color: #00ffff;
  color: #111;
  padding: 5px 5px;
  border-radius: 4px;
  font-weight: normal;
  text-decoration: none;
  box-shadow: 0 0 10px #00ffff;
  transition: background-color 0.3s, transform 0.3s;
	
  background-color: rgba(0, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  animation: float 3s ease-in-out infinite;
	
  z-index: 999;
}

#backToTop:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

#backToTop:hover {
  transform: scale(1.1);
}


html {
  scroll-behavior: smooth;
}


