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

body {
  font-family: Arial, sans-serif;
  color: #A7503C;
  background-image: url('images/Mariazell-Basilika-IMG_8512_Fruehjahr_1920x500.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

header {
  padding: 20px 15px;
  background-color: rgba(227, 227, 227, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header img {
  width: 150px;
}

#Zuname {
  text-transform: uppercase;
  font-size: 20px;
  color: #A7503C;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* Titelbereich */
#title {
  text-align: center;
  padding: 100px 20px;
  background-color: rgba(227, 227, 227, 0.6);
}

#title h1 {
  font-family: Impact, sans-serif;
  font-size: 50px;
  color: #B4B886;
}

/* Hauptinhalt */
main {
  padding: 50px 15px;
  background-color: rgba(244, 244, 244, 0.9);
}

.reise {
  background-color: rgba(227, 227, 227, 0.9);
  margin-bottom: 30px;
  padding: 20px;
  display: flex;
  align-items: center;
  border-radius: 8px;
}

.reise img {
  width: 200px;
  height: auto;
  border: 2px solid #fff;
  border-radius: 5px;
  margin-right: 20px;
}

.reise h3 {
  font-size: 28px;
  color: #B4B886;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.reise p {
  font-size: 18px;
  line-height: 1.6;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px 0;
  background-color: rgba(227, 227, 227, 0.8);
}

footer h5 {
  color: #A7503C;
  text-transform: uppercase;
  font-size: 16px;
}