@import url(https://fonts.googleapis.com/css?family=Open+Sans:700,300);
html,
body
{
    height: 100vh;
    background-color: rgb(177, 177, 177);
    color: white;
    
}
.site-logo{
  width: 10em;
  height: auto;
  position: absolute;
  bottom: 1.5em;
  left: 2em;
}

.loading-logo{
  width: 30em;
  height: 30em;
  

}

.webgl
{
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
}
.container
{
    position: absolute;
    z-index: 1;
    top: 30%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
    
}
.title1, .title2{
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    align-content: center;
    opacity: 1;
    
    
}
h2
{
    font-size: 1.5rem;
}
h1{
    font-size: 2rem;
}
.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
  }
.menu {
    position: absolute;
    z-index: 2;
    margin-top: 4em;
    margin-left: 2em;
}
.layer-button {
  display: inline-block;
  padding: 0.5em 1.7em;
  margin: 0 0.1em 0.1em 0;
  width: 10em;
  border: 0.16em solid rgb(255, 255, 255);
  border-radius: 2em;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #ffffff;
  text-shadow: 0 0.04em 0.04em rgba(255, 255, 255, 0.253);
  text-align: center;
  transition: all 0.2s;
  background-color: rgba(119, 119, 119, 0.9)
}

.layer-button:hover {
  color: black;
  background-color: rgba(255, 255, 255, 1);
}
.layer-button.off{
  background-color: rgba(255, 255, 255, 0);
}
.layer-button.off:hover{
  background-color: rgba(255, 255, 255, 1);
}


/*Loadingg bar*/
#loading-screen {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #50545C;
	opacity: 1;
 	transition: 1s opacity;

}


#loading-screen.fade-out {
    opacity: 0;
}
#loading-screen,
#loader {
  display: flex;
  justify-content: center;
  align-items: center;
}
  #loader {
    flex-direction: column-reverse;
    color: #323b41;
    font: 1.2em 'Open Sans', sans-serif;
  }
  progress[value] {
    width: 12em;
    height: 0.2em;
    border: none;
    border-radius: 0.125em;
    background: #323b41;
  }
  progress[value]::-webkit-progress-bar {
    border: none;
    border-radius: 0.125em;
    background: #323b41;
  }
  progress[value]::-webkit-progress-value {
    border: none;
    border-radius: inherit;
    background: linear-gradient(90deg, #f1c545, #d18839);
  }
  progress[value]::-moz-progress-bar {
    border: none;
    border-radius: inherit;
    background: linear-gradient(90deg, #f1c545, #d18839);
  }
  progress[value]::-ms-fill {
    border: none;
    border-radius: inherit;
    background: linear-gradient(90deg, #f1c545, #d18839);
  }
  output:not(:empty) {
    padding-top: 5em;
    padding-bottom: 0.1em;
  }
  output:not(:empty):after {
    content: '%';
  }
  
  

/*# sourceMappingURL=main.css.map*/