header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 40px 80px;
  position: sticky;
  top: 0;
  background-color: #14181b;
  z-index: 100;
}

header img.logo {
  height: 56px;
}

header .main-menu {
  display: flex;
  flex-direction: row;
  justify-content: end;
  gap: 28px;
  user-select: none;
}

header .main-menu > * {
  cursor: pointer;
  text-decoration: none;
  color: #ffffff;
  &:hover {
    color: #00daa9;
  }
  &:active {
    color: #1bb995;
  }
}

@media (max-width: 360px) {
  header {
    padding: 12px 16px;
  }
  header img.logo {
    height: 40px;
    width: 160px;
  }
}
