@import url('https://fonts.googleapis.com/css2?family=Uncial+Antiqua&display=swap');

* {
  box-sizing: border-box;
}

h1 {
  text-transform: uppercase;
  color: rgb(243, 242, 250);
  font-family: 'Uncial Antiqua', cursive;
  font-size: 45px;
}
body {
  height: 100vh;
  margin: 0;
  width: 100%;

}
h2 {
  text-transform: uppercase;
  font-family: 'Uncial Antiqua', cursive;
  font-size: 35px;
  color: gold;
  position: absolute;
  top: 40%;
  left: 22%;
}

.grid-wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../images/magical-sky-background.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.grid {
  align-items: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  justify-content: center;
  height: 600px;
  width: 1020px;
}

.grid div {
  flex-grow: 1;
  height: 10%;
  width: 6%;
  font-size: 0;
}


.ship {
  background-image: url(../images/ship.png);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;

}

.alien {
  background-image: url(../images/alien.png);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

.laser { 
    background-image: url(../images/laser.png);
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

.live-score {
flex-direction: row;
height: 50px;
width: 335px;
position: absolute;
top: 3%;
left: 8%;
font-family: 'Uncial Antiqua', cursive;
text-align: justify;
font-size: 35px;
color: white;
}

.final-score {
  flex-direction: row;
height: 50px;
width: 335px;
position: absolute;
top: 3%;
left: 12%;
font-family: 'Uncial Antiqua', cursive;
text-align: justify;
font-size: 35px;
color: white;

}