body, html {
  overflow-x: hidden;
}
*{
  margin: 0;
}
body{
  padding: 0;
}
header {
  font-family: "Alegreya SC", serif;
  font-weight: 400;
  font-style: normal;
  width: 100vw;
  height: 70px;
  background-color: rgb(50, 71, 83);
}
header nav {
  width: 100vw;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
header nav ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 18px;
  padding-inline-start: 0px !important;
}
header nav ul a {
  color: white;
  text-decoration: none;
}

.burger-menu {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}
.burger-menu .burger-icon {
  width: 35px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  color: white;
}
.burger-menu .burger-icon span {
  display: block;
  height: 5px;
  width: 100%;
  background: white1;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.burger-menu .menu {
  position: absolute;
  top: 50px;
  right: 0;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius: 5px;
  display: none;
}
.burger-menu .menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.burger-menu .menu ul li {
  margin: 10px 0;
}
.burger-menu .menu ul li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}
.burger-menu .menu.active {
  display: block;
}/*# sourceMappingURL=style.css.map */