body {
  margin: 0;
  padding: 0;
}
.main-header {
  height: 3rem;
  background-image: linear-gradient(
    to right,
    rgb(32, 178, 170),
    rgb(193, 206, 206)
  );
  padding: 0 2rem;
}
.main-header__nav {
  height: 100%;
  display: flex;
  align-items: center;
}
.main-header-item-list {
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  font-size: large;
  font-style: italic;
  font-weight: bold;
}
.nav__section {
  display: flex;
}
.main-header-item {
  list-style: none;
  padding: 0 1rem;
}
.main-header-item a {
  text-decoration: none;
  color: white;
}
.main-header-item a:hover,
.main-header-item a:active,
.main-header-item a.active {
  color: #ede83d;
}

