

* { 
    margin:0; 
    padding:0; 
}

html, body { 
    width:100%; 
    height:100%; 
} 
body {
    touch-action:none;
}

#request-perms-pane > #message { 
    padding: 10%;
    text-align:center;
}
#request-perms-pane {
    color: lightgrey;
    width: 100%;
    height: 100%;
    background: #060333;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    font-size: 300%;
}
#request-perms {
    font-size: 150%;
    width: 80%;
    border: 10px solid purple;
    border-radius: 40px;
    padding: 3%;
    background: grey;
}


#star-pane {
    display: none;
    width: 100%;
    height: 100%;
}
#canvas {
    width: 100%;
    height: 100%;
    display: block;
    background: #060333;
}
#footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: right;
}
a:link, a:visited {
    font-size: 250%;
    color: #060333;
    background-color: darkgrey;
    text-decoration: none;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: auto;
}







#alert-container {
    display: none;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 1;
    position: fixed; 
    left: 0;
    top: 0;
}
#no-heading-alert {
    font-size: 350%;
    text-align: center;
    color: black;
    background-color: rgba(169, 169, 169, 0.8);
    margin-left: 2em;
    margin-right: 2em;
}



