body {
    font-family: monospace;
    
    margin: 0;
    
    overflow: hidden;
}

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

canvas:active {
    cursor: grabbing;
}

.credits-container {
    display: none;
    z-index: 2;
    
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
}

.credits {
    font-size: 3vh;
    background: rgba(0, 0, 0, 0.5);
    color: lime;
    padding: 1em;
}

.credits h3 {
    text-align: center;
}

.credits a {
    color: lime;
}


.footer {
    z-index: 2;
    
    font-size: 5vh;
    color: green;
    
    display: inline-block;
    
    margin: 0.2em;
    
    position: fixed;
    bottom: 0;
    right: 0;
    text-align: right;
}

.footer a {
    text-decoration: none;
    text-decoration-color: green;
    color: lime;
    text-shadow: 0px 0px 0.2em #000;
}

.footer a:hover {
    color: #fff;
}

/*
#pause {
    border: 0.5vh solid #00ff00;
    border-radius: 0.5vh;
    background: green;
    
}*/