header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: fixed;
  z-index: 2;
  background-color: var(--general-background-color);
  height: var(--header-height-normal);
}

#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: var(--header-footer-color);
  filter: blur(8px);
}

#header-title-block {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  padding-left: 15px;
}

#header-title-block img {
  height: 18px;
  margin-right: 16px;
}

h1 {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
  height: 100%;
}

nav {
  font-size: 16px;
  font-weight: 600;
  height: 100%;
  display: flex;
}

nav a {
  cursor: default;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 35px;
  padding-right: 35px;
  border-left: 2px solid rgb(226, 226, 226);
}
