@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
body {
 font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: relative;
}

.navbar-logo {
  height: 10vh;;
}

.navbar-title {
  flex: 1;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  pointer-events: none; /* verhindert, dass der Titel anklickbar ist */
}

.navbar-menu {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  margin-left: auto;
}

.navbar-links {
  list-style: none;
  display: none;
  position: absolute;
  top: 60px;
  right: 24px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 16px 24px;
  border-radius: 8px;
}

.navbar-links.active {
  display: block;
}

.navbar-links li {
  margin: 12px 0;
}

.navbar-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.block {
    border-radius: 15px;
    padding: 20px;
    color: white;
    margin-top: 1vh;
}
.hero {
    background-color:#34979d;
}
.block2 {
    background-color: #fb9131;
}
.block3 {
    background-color: #003964;
}