<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  box-sizing: border-box;
}

header {
  text-align: center;
  font-family: 'DotGothic16', sans-serif;
}

header h1{
  margin-bottom: -20px;
  font-size: 40px;
}

header h3 {
  margin-bottom: -35px;
  padding-bottom: 0px;
  font-size: 25px;
  margin-top: 15px;
}

.game-info {
  display: flex;
  justify-content: space-evenly;
  margin: 20px 0px -120px 0px;
  font-family: 'DotGothic16', sans-serif;
}

.score {
  display: flex;
  flex-direction: column;
}

.scoreCounter {
  margin-top: 0px;
}

.livesCounter {
  margin-top: 0px;
}

.lives {
  display: flex;
  flex-direction: column;
}

.start-menu {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  margin-top: 80px;
  font-family: 'DotGothic16', sans-serif;
}

.start-menu p {
  margin: 0px;
}

.button {
  margin-top: 10px;
  padding: 5px 3px;
  font-family: 'DotGothic16', sans-serif;
  border: black solid 2px;
  background-color: white;
}

.grid-wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center; 
}

.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: 600px;
}

.grid div {
  border: 1px solid lightgrey;
  flex-grow: 1;
  height: 10%;
  width: 10%;
}

.grid div.food {
  background-image: url('../assets/food1.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.grid div.food-two {
  background-image: url('../assets/food2.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.grid div.godzilla {
  background-image: url('../assets/godzilla_neutral_left.png');
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

.grid div.enemyOne {
  background-image: url('../assets/megalon_neutral_left.png');
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

.grid div.enemyTwo {
  background-image: url('../assets/minilla_neautral.png');
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

.grid div.wall {
  background-color: slategrey;
  background-repeat: no-repeat;
  background-size: contain;
}</pre></body></html>