body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
}

html {
  scroll-behavior: smooth;
}

/* Video */
.header-video {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

/* Header */
header {
  background: #222;
  color: white;
  padding: 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

h1 {
  margin: 0;
  font-size: 20px;
}

nav {
  margin-top: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.burger {
  font-size: 24px;
  cursor: pointer;
  display: none;
  user-select: none;
}

#nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}

#nav-links li a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  background-color: #444;
  border-radius: 4px;
}

#nav-links li a:hover {
  background-color: #6c070c;
}

.navheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
}

/* Main */
main {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  background-color: rgb(211, 211, 211);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.inhalt-bild {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-bottom: 15px;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.uhr-section {
  margin-top: 40px;
  border-bottom: 2px solid white;
  padding-bottom: 40px;
}

h3 {
  font-size: 32px;
  margin: 0;
}

/* Footer */
footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  display: flex;
  justify-content: space-around;
  gap: 20px;
  align-items: center;
}

body {
  background: url(hintergrund.jpg) no-repeat fixed center;
  background-size: 100% auto;
}

.folgetext {
  margin-top: 0;
}

.social-icon {
  width: 30px;
  height: 30px;
  margin: 0 10px;
  vertical-align: middle;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .burger {
    display: block;
  }

  #nav-links {
    display: none;
    flex-direction: column;
    background-color: #333;
    padding: 10px;
  }

  #nav-links.active {
    display: flex;
  }

  #nav-links li {
    margin: 5px 0;
  }
}
