* {
    font-family: 'Games'
}

#hero {
    /* background: #ff0000; */
    background-image: url(hero.png);
    width: 40px;
    height: 40px;
    background-size: 40px 40px;
    background-repeat: no-repeat;
    position: absolute;
}
#background {
    background-image: url(bg.jpg);
    width: 500px;
    height: 500px;
    position: absolute;
    left: 0px;
    top: 0px;
}
#laser {
    background: #00FF00;
    width: 2px;
    height: 50px;
    position: absolute;
}
.enemy {
    background: #00FF;
    width: 35px;
    height: 35px;
    position: absolute;
}
.enemy2 {
    background: #f0FF;
    width: 35px;
    height: 35px;
    position: absolute;
}
#score {
    color: #FFF;
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 18px;
}
#level {
    color: #FFF;
    position: absolute;
    left: 20px;
    top: 50px;
    font-size: 18px;
}
#banner {
    color: #ffffff;
    position: absolute;
    left: 200px;
    top: 200px;
    font-size: 22px;
    visibility: hidden;
}
#intructions {
    background-color: #d4d4d4;
    padding: 20px;
    border-radius: 20px;
    height: 300px;
    width: 300px;
    position: absolute;
    left: 650px;
    top: 50px;
}
.textInstructions{
    color: #000000;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
.blink{
    animation: blinker 1s linear infinite;
}
#gameover {
    color: #ff0000;
    position: absolute;
    left: 160px;
    top: 200px;
    font-size: 22px;
    visibility: hidden;
}