.logo {
  display: block;
  margin: 0 auto 1.5rem;
  max-width: 200px;
}

.header {
  background-color: #2c6a3f20;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  max-width: 1200px;
  margin: auto;
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  margin-bottom: 30px;
}

.header-container {
  width: 100%;
  position: sticky;
  top: 0;
}

.watermark-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.09;
}

.watermark-container::before {
  content: "";
  background-image: url("assets/images/Logo.svg");
  background-repeat: no-repeat;
  background-size: 400px;
  width: 400px;
  height: 400px;
  transform: rotate(-30deg);
  opacity: 1;
  background-position: center;
}
