html, body {
  margin: 0;
  padding: 0;
}

a {
  color: white;
  text-decoration: none;
}

.header {
  width: 100%;
  height: 100px;
  background-color: #050053;
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1280px;
  height: 100%;
}

.img-logo {
  width: 224px;
  height: 63px;
}

.header-link {
  font-size: 24px;
  font-weight: bold;
}

.header-link.active {
  font-weight: bold;
  color: #FF7D44;
}

.header-link:not(:first-child) {
  margin-left: 50px;
}