* {
  margin: 0;
  padding: 0;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  background: #264234;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.logo_div {
  display: flex;
  align-items: center;
}
.logo_img {
  height: 100px;
  margin-right: 16px;
}
.logo_div span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  padding-right: 50px;
}
nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}
