/* Structure générale du header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  padding-bottom: 5px;
}

/* Logo */
.header-logo {
  display: flex;
  justify-content: center;
  margin-top: 1px;
}

.header-logo img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 750px) {
  .main-header {
    position: static;
    padding-bottom: 6px;
  }
}
