* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow: hidden;
    background: #000;
    width: 100%;
    height: 100%;
}

#scene-container {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    touch-action: none;
}

#scene-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

#footer-link {
    position: fixed;
    bottom: 6px;
    right: 10px;
    z-index: 100;
    opacity: 0.15;
    transition: opacity 0.3s;
}

#footer-link:hover {
    opacity: 0.5;
}

#footer-link a {
    color: #664433;
    text-decoration: none;
    font-family: monospace;
    font-size: 10px;
}