* {
  /* https://modernfontstacks.com/ */
  font-family:
    ui-rounded, "Hiragino Maru Gothic ProN", Quicksand, Comfortaa, Manjari,
    "Arial Rounded MT", "Arial Rounded MT Bold", Calibri, source-sans-pro,
    sans-serif;
  text-underline-offset: 8px;
}

#menu {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

#menu .menu-item.active {
  font-weight: 900;
  text-decoration: underline;
}

#menu .menu-item {
  font-weight: 100;
  font-size: 1.2em;
  flex: 0 1 200px;
  vertical-align: middle;
  display: inline-block;
  text-align: center;
  color: black;
  text-decoration: none;

  padding-top: 1rem;
  padding-bottom: 1rem;

  &:hover {
    text-decoration: underline;
  }
}

html,
body {
  width: 100vw; /* 100% of viewport width */
  margin: 0;
}

@media (min-width: 50rem) {
  #content {
    width: 700px;
    max-width: 70vh;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 50rem) {
  #content {
    width: 100%;
  }
}

#hero img {
  width: 100%;
}

/** 
 * ========================
 * LOGIN PAGE
 * ========================
 */

#login-container {
  width: 100%;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}

#login-container #title {
  margin-top: 20vw;
}

#login-form {
  display: flex;
  width: 100%;
}

#login-form #secret {
  flex-grow: 1;
  height: 2em;
}
