.menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu > ul > li {
  position: relative;
  padding: 0.25rem 0;
}
.menu > ul > li > a {
  text-decoration: none;
}
@media (width >= 768px) {
  .menu {
    flex-direction: row;
    flex: 1;
    display: flex;
  }
}

.menu-left {
  display: flex;
  justify-content: flex-start;
}

.menu-center {
  display: flex;
  justify-content: center;
}

.menu-right {
  display: flex;
  justify-content: flex-end;
}

:root {
  --body-font-family: apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --body-font-size: 1rem;
  --body-font-weight: 400;
  --body-line-height: 1.5;
  --text-color: #22262a;
  --flask-color-primary: #224faa;
  --flask-color-primary-hover: #424077;
  --flask-color-link: #224faa;
  --flask-header-bg-color: #fff;
}

body {
  min-height: 100vh;
  position: relative;
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
  color: var(--text-color);
}

.container-header {
  background-color: var(--flask-header-bg-color);
}

/*# sourceMappingURL=template.css.map */
