/* Header container */

.header {
    align-content: right;
  position: fixed;
  height: 0;
    padding: 0 25px;
    border-radius: 10px;
margin-top: 30px;
  display: flex;
  align-items: center;
}

.lines {
  width: 32px;
  cursor: pointer;
  position: relative;
}

.lines span {
  display: block;
  height: 4px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

.dropdown {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100vw;
  background-color: blue;
  border-radius: 20px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.dropdown ul {
  list-style: none;
  margin: 0;
  padding: 25px;
}

.dropdown li {
  padding: 8px 0;
}

.dropdown a {
  color: #fff;
    font-family: avenir-next-world, sans-serif;
  text-decoration: none;
  font-size: 20px;
    transition: 0.3s;
}

.dropdown a:hover {
    font-size: 25px;
}

.lines:hover .dropdown {
  max-height: 300px;
}

.lines:hover span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.lines:hover span:nth-child(2) {
  opacity: 0;
}
.lines:hover span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Main */

body  {
  background-image: url(Images/Backround.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.ordner  {
  
  
  width: 100%;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  
  padding: 20px 0;
  
}

.box {
  padding: 40px;
  margin-bottom: -80px;
  margin-top: 40px;
}

.box h1 {
  text-align: center;
  font-family: avenir-next-world, sans-serif;
  color: white;
  font-size: clamp(2rem, 8vw, 8rem);
  padding: 0 45px;
  border-radius: 50px;
  background-color: blue;
  
}

.box h2 {
  font-family: avenir-next-world, sans-serif;
  font-size: 30px;
  font-style: italic;
  text-align: left;
  padding: 0 45px;
}

.box iframe {
  width: 100%;
  text-align: center;
  margin: auto;
  padding: 10px;
  background: blue;
}

.Song {
  margin-top: 100px;
  color: white;
}

/*Footer*/

.footer {
  background: blue;
  color: #ffffff;
  padding: 40px 20px 20px;
  border-radius: 20px;
    margin-top: 500px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  font-family: avenir-next-world, sans-serif;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section ul {
  font-family: avenir-next-world, sans-serif;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-section a:hover {
  color: #0007ff;
}

.footer-bottom {
    font-family: avenir-next-world, sans-serif;
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #ffffff;
}