* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    font: 16px/1 sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

body {
    background: #111;
}

#scene {
    width: 100%;
    height: 100%;
}

nav {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 100;
}

.button {
    display: block;
    margin: .5em 1em;
    padding: 1em;
    width: 3.5em;
    height: 3.5em;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, .54);
    color: white;
    outline: none;
    opacity: .54;
    transition: opacity .2s ease;
    font-size: inherit;
    text-align: center;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.button .material-icons {
    display: inline-block;
    vertical-align: middle;
}

.button:hover, .button.active {
    opacity: 1;
}
