/***** MAIN *****/

html {
    box-sizing: border-box;
    font-size: 100%;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-family: sans-serif;
    font-weight: bold;
    overflow: hidden;
}

#three-js-container {
    position: relative;
}

canvas {
    width: 100%;
    height: 100%;
}

.box {
    position: absolute;
    color: black;
    z-index: 10;
    padding: 10px;
    font-size: 2rem;
}

.controls-main {
    top: 20px;
    left: 20px;
}

.controls-upload {
    top: 20px;
    right: 20px;
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    color: black;
}