/* Add this to your existing styles.css file */

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

header {
  background-color: #333;
  padding: 10px;
}

nav ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav li {
  margin-right: 10px;
}

nav a {
  color: white;
  text-decoration: none;
}

.content-wrapper::before {
  content: '';
  background-image: url('resized-downtown-munich.png'); /* Replace 'downtown-munich.jpg' with the actual filename of your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5; /* This sets the transparency to 50% */
  z-index: -1; /* This ensures the background image is positioned behind the content */
}

.content-wrapper {
  position: relative;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8); /* Add a semi-transparent white background */
}

main {
  max-width: 800px;
  margin: 0 auto;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px;
}
