/* Luminant shared stylesheet */

html, body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #0e2e5d;
  overflow-y: scroll;
}

a {
  color: #0e2e5d;
}

/* Nav menu */
.menu-container {
  position: absolute;
  top: 10px;
  right: 15px;
}

.menu-icon {
  font-size: 26px;
  cursor: pointer;
  padding: 8px;
  font-family: inherit;
  color: #ffffff;
  user-select: none;
}

.menu-dropdown {
  max-height: 0;
  overflow: hidden;
  background: #000000;
  padding: 0 15px;
  text-align: right;
  margin-top: 5px;
  font-family: inherit;
  position: absolute;
  right: 0;
  z-index: 1000;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.menu-dropdown a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  margin: 6px 0;
  font-size: 16px;
  font-family: inherit;
}

.menu-dropdown a:hover {
  color: #cccccc;
}

.menu-dropdown a.active {
  font-weight: bold;
  color: #ffffff;
}

.menu-container:hover .menu-dropdown {
  max-height: 500px;
  padding: 10px 15px;
}

@media (max-width: 600px) {
  .menu-icon {
    font-size: 28px;
  }
  .menu-dropdown {
    text-align: left;
  }
}
