html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Open Sans Condensed', sans-serif;
}
b {
  font-size: 1.5em;
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  margin: 0.5em 0 0 -1em;
  width: 2em;
  height: 1.5em;
  background-color: rgba(0, 0, 0, 0.25);
  font-family: RaphaelIcons;
  text-align: center;
  padding-top: 0.5em;
  border-radius: 0.5em;
  user-select: none;
  cursor: pointer;
}
.color {
  width: 100%;
  position: absolute;
  margin-top: -4em;
  text-align: center;
  top: 50%;
}
.color span {
  display: inline-block;
  padding: 1em;
  border-radius: 1em;
  background-color: rgba(0, 0, 0, 0.25);
}
.menu {
  font-size: 0.85em;
  position: relative;
  z-index: 10;
  user-select: none;
  width: 18em;
}
.menu .menu-content {
  transition: margin-left 1s;
  padding-left: 1em;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 0 1em 1em 0;
  float: left;
  width: 13em;
}
.menu .menu-content h2 {
  font-family: 'Handlee', cursive;
  font-weight: normal;
  margin-left: 1em;
  margin-bottom: 0.2em;
}
.menu .menu-content h3 {
  font-weight: normal;
  margin: 0.4em 0 0.2em 0;
}
.menu .menu-content table {
  margin-bottom: 1em;
}
.menu .menu-content ul {
  list-style: none;
}
.menu li,
.menu label {
  color: rgba(252, 251, 250, 0.5);
  cursor: pointer;
  transition-duration: 1s;
}
.menu li:hover,
.menu label:hover {
  transition-duration: 0.3s;
  color: rgba(252, 251, 250, 0.9);
}
.menu .menu-switch {
  padding-top: 12em;
}
.menu .menu-switch label {
  font-family: RaphaelIcons;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 0 1em 1em 0;
  padding: 0.2em;
  font-size: 3em;
}
.menu input {
  display: none;
}
.menu #menu-collapsed:checked ~ .menu-content {
  margin-left: -14em;
}
.menu #menu-collapsed:checked ~ .menu-switch .rise {
  display: inline-block;
}
.menu #menu-collapsed:checked ~ .menu-switch .collapse {
  display: none;
}
.menu #menu-collapsed ~ .menu-switch .rise {
  display: none;
}

h5 {
  font-weight: lighter;
}