@import url('https://fonts.googleapis.com/css2?family=Freckle+Face&display=swap');

body {
  margin: 0;
  padding: 0;
  background-color: #228B22; /* jungle green */
  background-image: url('images/jungle.jpg'); /* Replace this with your final image path */
  background-size: cover;
  background-position: center;
  height: 100vh;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 2px 2px 4px #000;
}

h1 {
  font-family: 'Freckle Face', cursive;
  font-size: 4em;
  margin-bottom: 40px;
  text-align: center;
}

.button-container {
  display: flex;
  gap: 20px;
}

.game-button {
  background-color: rgba(74, 111, 220, 0.9);
  color: white;
  border: none;
  padding: 15px 25px;
  font-size: 1em;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.game-button:hover {
  background-color: rgba(55, 85, 164, 0.9);
}
