html {
    font-family:Menlo, Monaco, "Courier New", monospace;
}

body {
    background-color: #888888;
    background-image: url("../img/background.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.page {
    margin-top: 5em;
    height: inherit;
}

.page .pageblock {
    float: left;
    margin-right: 5rem;
}

a {
  text-decoration: none !important;
  color: inherit;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 14rem;
    text-align: left;
    z-index: 1;
    padding: 2rem 1rem;
    color: rgba(255,255,255,1);
    background-color: rgb(0, 0, 0);
}

.navbar .title {
    font-size: x-large;
}

.navbar .subtitle {
    font-size: smaller;
    color: white;
}

.navbar ul {
    list-style-type: none;
}

.navbar .footer {
  position: fixed;
  left: auto;
  bottom: 0;
}

.navbar .footer li {
    display: inline;
}

.navbar .footer img {
    max-height: 30px;
    max-width: 30px;
}

.content {
    padding-left: 22rem;
    overflow-x: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    scroll-snap-points-y: repeat(100%);
    scroll-snap-type: mandatory;
    scroll-snap-destination: 100% 0%;
    z-index: 0;
}
