body {
  text-align: center;
  background: linear-gradient(to bottom right, #070630 0%,#060454 100%);
  min-height: 100vh;
  font-family: 'Press Start 2P', cursive;
  user-select: none;
}

.light{
  color: rgb(0, 238, 255);
  font-weight: bold;
  filter: blur(1px) brightness(0);
  animation: flicker 2s linear forwards;
  animation-delay: 1s;
}

@keyframes flicker{
  0%{
    filter: blur(1px) brightness(1);
  } 
  3%{
    filter: blur(1px) brightness(0);
  }
  6%{
    filter: blur(1px) brightness(0);
  }
  7%{
    filter: blur(1px) brightness(1);
  }
  8%{
    filter: blur(1px) brightness(0);
  }
  9%{
    filter: blur(1px) brightness(1);
  }
  10%{
    filter: blur(1px) brightness(0);
  }
  20%{
    filter: blur(1px) brightness(1);
  }
  50%{
    filter: blur(1px) brightness(1);
  }
  99%{
    filter: blur(1px) brightness(0);
  }
  100%{
    filter: blur(1px) brightness(1);
  }
  
}

.difficulty{
  color: #FEF2BF;
  font-size: 1rem;
}
.diff-text {
  animation: shake 1s;
  animation-iteration-count: infinite;
}
@keyframes shake {
  0% {opacity: 0;} 
	100% {opacity: 1;} 
}

h3 {
  margin:  1%;
  color: #FEF2BF;
}

#level-title {
  font-size: 3rem;
  margin:  3%;
}

.container {
  display: block;
  width: 50%;
  margin: auto;

}

.goButton {
  border-radius: 50%;
  padding: 1.5%;
  display: inline-block;
  font-size: 2rem;
  background-color: #00aa55;
  font-family: 'Press Start 2P', cursive;
  color: #FEF2BF;
}
.goButton:hover{
  color: #00aa55;
  background-color: #FEF2BF;
}

.btn {
  margin: 25px;
  display: inline-block;
  height: 200px;
  width: 200px;
  border: 10px solid black;
  border-radius: 20%;
}

.game-over {
  background-color: red;
  opacity: 0.8;
}

.red {
  background-color: red;
}

.green {
  background-color: green;
}

.blue {
  background-color: blue;
}

.yellow {
  background-color: yellow;
}

.foot {
  color: #FEF2BF;
}

.pressed {
  box-shadow: 0 0 20px white;
  background-color: rgb(206, 195, 195);
}
