/* Font Face Definition */
@font-face {
  font-family: 'Manrope';
  src: url('Manrope.woff2') format('woff2'),
       url('Manrope.woff') format('woff'),
       url('Manrope.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
.background-pattern {
  position: absolute;
  height: 10px;
}
.background-pattern img {
  width: 100%;
  display: block;
}
@media (max-width: 480px) {
  .background-pattern img{
height: 130px;
  width: auto;
  }
}
.center-content {
  text-align: center;
  padding: 50px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
    z-index: 1;
}

.logo {
  width: 200px;
  margin-bottom: 30px;
}

.text {
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 40px;
}

.email {
  color: #f5a623;
  text-decoration: underline;
  font-size: 28px;
  font-weight: 300;
    margin-bottom: 20px
}

.email:hover {
  text-decoration: underline;
}

.footer {
  font-size: 14px;
  color: #aaa;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #000;
}
.footer a {
  color: #aaa;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.impressum {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
    padding-top: 0px;
    padding-bottom: 0px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.impressum h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #f5a623;
font-weight: 400;
}

.impressum h2 {
  font-size: 20px;
  margin-top: 30px;
  color: #f5a623;
    font-weight: 400;
}

.impressum p {
  font-size: 15px;
  margin-top: 10px;
}

.impressum a {
  color: #f5a623;
  text-decoration: underline;
}