* {
    box-sizing: border-box;
}

h1 {
    font-family: helvetica;
    color: rgb( 11, 86, 117 );
}

body {
    font-family: helvetica;
    margin: 0;
    padding: none;
    background-color: rgb( 154, 205, 237 );
    color: rgb( 28, 78, 104 );
    justify-content: center;
}

footer {
    font-family: arial;
    font-size: 12px;
    padding-left: 10px;
    position:absolute;
    bottom: 0;
    width: 100%;
}

/* Links */
a {
    text-decoration: none;
}
a:link {
    color: rgb( 233, 73, 154 );
}
a:visited {
    color: rgb( 110, 30, 71 );
}
a:hover {
    color: rgb( 252, 207, 230 );
}

.top_centered {
  position: fixed;
  left: 50%;
  transform: translate(-50%, 0%);
}
        
.centered {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* the canvas *must not* have any border or padding, or mouse coords will be wrong */
#canvas {
    padding-right: 0;
    display: display;
    border: 0px none;
    visibility: hidden;
}

#buildwith {
    position: fixed;
    bottom: 0;
    left: 0;
}

#fullscreenlink {
    position: fixed; 
    bottom: 0;
    right: 0;
    font-weight: bold;
    cursor: pointer;
}

#fullscreenlink::before {
    content: '\26F6';
    padding-right: 5px;
}

#loadindStatusLabel {
    display: block;
    margin-bottom: 5px;
    margin-left: 5px;
}

#loadingbar {
    width: 250px;
    height: 20px;
    background-color: rgb( 11, 86, 117 );
    border-radius: 10px;
}

#loadingbar_progress {
    left: 0;
    top:0;
    height: 100%;
    width: 50%;
    background-color: rgb( 233, 73, 154 );
    border-radius: 10px;
}