@font-face {
  font-family: noise;
  src: url(noise.woff);
}

html, body {
	width: 100%;
	height: 100%;
  flex-direction: column;
  	margin: 0px;
  	padding: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}
body {
	flex-direction: row;
	overflow: hidden;
  touch-action: none;
  align-items: center;
}

canvas {
  display: flex;
  position: absolute; 
  width: 100%; 
  height: 100%; 
  overflow: hidden;
  z-index: -1
}

div {
  font-family: noise;
}

.title {
  display: flex;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  margin-top: 15%;
  margin-left: auto;
  font-family: noise;
  padding: 30px;
  font-size: 16vw;
  text-align: center;
  justify-content: center;
  position:relative;
  color: white;
  opacity: 0.6;  

}
@media all and (min-width: 1001px) {
  .title  {  
    font-size: 16vw;
    margin-top: 15%;
    justify-content: center;
  text-align: center;
  position:relative;
  animation: title_shadow 725ms infinite;
  }
}

@media all and (max-width: 1000px) and (min-width: 700px) {
  .title  {  
    font-size: 14vw;
    text-align: center;
    margin-top: 15%;
    justify-content: center;
    position:relative;
    animation: title_shadow 725ms infinite;
  }
}
@media all and (max-width: 699px) {
  .title  {  
    font-size: 14vw;
    margin-top: 15%;
    text-align: center;
    justify-content: center;
    position:relative;
    animation: title_shadow 725ms infinite;
  }
}



@keyframes title_shadow {
  1% {
    text-shadow: 2px -5px 10px #f9f677, 5px 2px 2px #1b57ff, -1px 10px 3px #000000d0;
    opacity: 0.6;  
  }
  10% {
    text-shadow: 10px -5px 15px #f9f677, 6px -5px 2px #1b57ff, -1px 5px 2px #000000af;
    opacity: 0.6;  
  }
  70% {
    text-shadow: 5px 0px 20px #f9f677, 8px -3px 3px #1b57ff, -15px -1px 4px #000000b6;
    opacity: 0.6;
  }
  99% {
    text-shadow: 5px 0px 20px #f9f677, 6px -2px 3px #1b57ff, -10px -5px 1px #000000b6;
    opacity: 0.6;  
  }
} 

@keyframes add_shadow {
  1% {text-shadow: 0px -3px 5px #f9f677, -4px -5px 2px #1b57ff, -4px 5px 2px #000000;
    }
  99% {text-shadow: 2px 0px 5px #f9f677, 4px 3px 2px #1b57ff, -4px 5px 2px #000000;}
} 



main {
  margin:auto;
}


* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}