body
{
   background-image: url(https://cdnb.artstation.com/p/assets/images/images/002/330/895/large/alexander-pavlenko-teslarpg-graveyard-01.jpg?1460387963);
   background-repeat: no-repeat;
   background-size: cover;
   height:600px;
}

.game_state
{
   display:flex;
   justify-content: space-around
}

.text
{
  color:white;
  font-family: fantasy;
}

.lives
{
  display: flex;
}

.scores
{
  display: flex;
  justify-content: space-around;
}

#score
{
  text-align: center;
  position: relative;
  top: 30;
}

#space_ship
{
    position: fixed;
    transition: left 0.2s;
    bottom: 5px;
    left: 50%;
}

.bullet
{
    height: 12px;
    width: 2px;
    background-color: white;
    position:fixed;
    transition: top 0.15s;
    z-index: 20;
}

.ghosts,.mushrooms,.donuts,.pinkmans,.pizzas,.carrots,.yellows
{
  position:relative;
  width: 1000px;
  transition: left 1.5s;
  display:flex;
  height:70px;
  text-align: center;
}

.image
{
  width: 100px;
  height: 70px;
}


.welcome, .game_over, .continue
{
  position: relative;
  top: 0px;
}


#welcome_image, #game_over_image
{
  text-align: center;
  position: relative;
  top: 30px;
}

#start, #continue
{
  position:relative;
  top: 60px;
}

#game_over
{
  position:relative;
  top: 50px;
}


.title
{
  position: relative;
  font-size: 50px;
  text-align: center;
  top: 40px;
}

.container
{
  text-align: center;
}

.container a
{
    color: white;
    font-family: fantasy;
    padding: 5px 5px;
    position: relative;
    cursor: pointer;
    font-size: 25px;
}

/* Top and Bottom borders go out */
.topBotomBordersOut a:before, div.topBotomBordersOut a:after
{
    position: absolute;
    left: 0px;
    width: 100%;
    height: 2px;
    background: #FFF;
    content: "";
    opacity: 0;
    transition: all 0.3s;
}

div.topBotomBordersOut a:before
{
    top: 0px;
    transform: translateY(10px);
}

div.topBotomBordersOut a:after
{
    bottom: 0px;
    transform: translateY(-10px);
}

div.topBotomBordersOut a:hover:before, div.topBotomBordersOut a:hover:after
{
    opacity: 1;
    transform: translateY(0px);
}

