@font-face{
  font-family: 'zabars';
  src: url('../assets/fonts/zabar/zabars.ttf');
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url('../assets/img/pageBackground.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #000;
  font-family: 'zabars', sans-serif;
  color: white;
  padding: 20px;
  overflow-x: hidden;
}

.backButton {
  position: fixed;
  top: 20px;
  left: 20px;
  background-color: #ff6b00;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'zabars', sans-serif;
  font-size: 24px;
  transition: background-color 0.3s, transform 0.2s;
  z-index: 1000;
  letter-spacing: 1px;
}

.backButton:hover {
  background-color: #ff8533;
  transform: scale(1.05);
}

.impressumContainer {
  max-width: 800px;
  background-color: rgba(44, 44, 44, 0.9);
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.impressumContainer h1 {
  color: #ff6b00;
  text-align: center;
  margin-top: 20px;
  font-size: 50px;
  letter-spacing: 3px;
  text-shadow: 0 5px 5px rgba(0, 0, 0, 0.432);
}

.impressumContainer p {
  line-height: 1.8;
  font-size: 24px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.impressumContainer h2,
.impressumContainer h3 {
  color: #ff6b00;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 28px;
  letter-spacing: 1.5px;
}
