<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
Nikan Emami
4/1/23
*/
body {
  font-family: Arial, sans-serif;
  margin: 0;
}

#container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-image: url('background.jpg');
  background-size: cover;
  background-position: center;
}

h1 {
  margin-top: 0;
  font-size: 100px;
  color: aqua;
}

p{
  font-size: 30px;
  color: #fff;
}

#game-board {
  margin-top: 30px;
  width: 800px;
  height: 500px;
  background-color: #fff;
  background-image: url('image.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #000;
  position: relative;
}

#score-board {
  margin-top: 30px;
  font-size: 35px;
  color: #fff;
}

#speed-board {
  margin-top: 10px;
  font-size: 20px;
  color: #fff;
}

.bug {
  position: absolute;
  width: 50px;
  height: 50px;
  cursor: pointer;
  left: 0;
  top: 0;
}

.bug img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bug-smashed {
  opacity: 0.5;
  cursor: default;
}
</pre></body></html>