
header {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: left;
  flex-wrap: wrap;
  padding: 10px;
  gap: 10px;
}

header .logo {
  height: clamp(80px, 10vw, 150px);
  flex-shrink: 0;
}

header h1.dynamic-text {
  flex: 1 1 auto;
  margin: 0 10px;
  text-align: center;
  min-width: 0;
  white-space: normal;
  word-break: break-word;
  font-size: 2em;
}

header nav {
  flex-shrink: 0;
}

header nav a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #5a9c9d;
  padding: 1.5rem;
  text-decoration: none;
  transition: color 0.3s;
}

header nav a:hover {
  color: #ff9900;
}



main {
    flex: 1;
    display: flex;
    padding: 20px;
    text-align: center;
}
