header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  max-width: 100vw;
  background: linear-gradient(
    135deg,
    rgba(7, 35, 104, 0.88),
    rgba(16, 78, 204, 0.8),
    rgba(34, 158, 255, 0.65)
  );
  background-size: 300% 300%;
  animation: mikrosGradientMove 8s ease infinite;
  color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 12px 16px;
  width: 100%;
}

header .header-container {
  display: flex;
  width: 100%;
  max-width: 1180px;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

header .site-logo {
  display: block;
  width: 144px;
  height: 50px;
  object-fit: contain;
  background-color: white;
  border-radius: 8px;
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
    min-height: 112px;
    height: auto;
    padding: 8px 6px;
  }

  header .header-container {
    flex-direction: column;
    gap: 10px;
  }
}

header h1 {
  font-weight: normal;
  font-size: 23px;
  margin: 0;
  text-align: right;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 1rem;
    text-align: center;
  }
}

@keyframes mikrosGradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}
