.header {
  max-width: 1200px;
  padding: 40px 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.header-menu a {
  font-size: 1.125rem;
  line-height: 1.3;
  padding: 10px 15px;
  color: #141414;
  display: block;
  border-radius: 6px;
}

.header-menu li :link {
  background-color: #ffdfaf;
  text-decoration: none;
}
.header-menu li :visited {
  color: #000000;
  text-decoration: line-through;
}
.header-menu li :hover {
  color: #000000;
  background-color: #fd7a00;
  text-decoration: none;
}
.header-menu li :active {
  text-decoration: none;
  background-color: #e26e01;
}

@media (max-width: 1000px) {
  .header {
    flex-direction: column;
    gap: 40px;
    padding: 20px;
    margin-bottom: 40px;
  }
  .header a {
    background: #ffdfaf;
    border-radius: 4px;
  }
  .header-menu a {
    font-size: 1.125rem;
    line-height: 1.3;
    text-decoration: none;
    color: #000000;
  }
}
