* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-family: Arial, sans-serif;
  background-color: #1e1e1e;
  color: #ffffff;
}

.game-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 200px;
  border: 2px solid #ffffff;
  overflow: hidden;
  background-color: #333333;
}

.dino {
  position: absolute;
  bottom: 20px;
  left: 50px;
  width: 40px;
  height: 40px;
  background-image: url('./assets/dino.png');
  background-size: cover;
}

.grass {
  position: absolute;
  bottom: 20px;
  right: -50px;
  width: 30px;
  height: 60px;
  background-image: url('./assets/grass-1.png');
  background-size: cover;
}

.score {
  margin-top: 20px;
  font-size: 20px;
  color: #ffffff;
}

button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}
