* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: white;
  color: black;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px;
}

.logo img {
  width: 260px;
  height: 100px;
  object-fit: cover;
}

nav a {
  margin: 0 20px;
  font-size: 22px;
  font-weight: bold;
  color: black;
  text-decoration: none;
}

main {
  text-align: center;
  margin-top: 100px;
}

.text {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 60px;
}

.bild-container {
  position: relative;
  display: inline-block;
  background-color: black;
  max-width: 100%;
}

.bild-container img {
  width: 100%;
  height: auto;
  display: block;
}

.bild-text {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
  font-size: 28px;
  font-weight: bold;
}
