/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-image: url('Hintergrund.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#container {
  background: transparent;
  text-align: center;
  max-width: 800px;
  width: 100%;
  color: white;
}

#message {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: white;
  line-height: 1.5;
  margin-bottom: 30px;
}

#divider {
  width: 540px;
  height: 4px;
  background-color: #BE9D70;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
  
  #message {
    font-size: 32px;
  }
  
  #divider {
    width: 400px;
  }
}

@media (max-width: 480px) {
  #message {
    font-size: 24px;
  }
  
  #divider {
    width: 300px;
  }
}
