html {
  font-family: sans-serif;
}

body * {
  box-sizing: border-box;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 20px;
}

.container {
  max-width: 1320px;
  padding: 0 15px;
  margin: 0 auto;
}

img {
  width: 80px;
  height: 50px;
}

.navigation {
  color: black;
}

.number {
  color: black;
  text-decoration: none;
}

.header_container {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 20px;
  align-items: center;
  border-bottom: 2px solid black;
  flex-wrap: wrap;
}
