h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 5vw;
    text-align: center;
    color: #FFFFFF;
}

h2 {
    font-family: "Raleway", sans-serif;
    font-size: 50px;
    text-align: center;
    vertical-align: center;
    position: relative;
    top: -50px;
    letter-spacing: 0px;
    word-spacing: -2px;
}

h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 2vw;
    text-align: center;
    color: #FFFFFF;
}

p {
    font-family: "Raleway", sans-serif;
    font-size: 1.3em;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.4em;
}

li {
    font-family: "Raleway", sans-serif;
    font-size: 1.3em;
    color: #FFFFFF;
    text-align: left;
    line-height: 1.4em;
}

a {
    color: #888888;
    text-decoration: none;
}

a:visited {
    color: #888888;
    text-decoration: none;
}

a:hover {
    color: #888888;
    text-decoration: underline;
}

.flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

div.sidebar {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    overflow: auto;
    width: 5em;
    background-color: #FFFFFF;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    z-index: 1;
}

div.main {
    position: fixed;
    top: 0px;
    left: 5em;
    right: 0px;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

div.flexed {
    padding: 1vw;
    padding-left: 15vw;
    padding-right: 15vw;
}

.top {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.active {
    padding: 1em;
    background-color: #000000;
}

.bottom {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.iconset {
    padding: 1em;
    transition-duration: 0.2s;
}

.anim:hover {
    background-color: #DDDDDD;
}

img.icon {
    width: 5em;
    height: 5em;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  height: 50px;
  background-color: #FFFFFF;
  color: #000000;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  padding: 5px;
  top: 5px;
  left: 105%;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}
