body {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background-color: #fce4ec;
  margin: 0;
  padding: 0;
}

.header {
  background-color: #ff80ab;
  padding: 20px;
  text-align: center;
  color: white;
}

nav a {
  margin: 0 15px;
  color: white;
  text-decoration: none;
}

.main-content {
  padding: 20px;
  text-align: center;
}

.footer {
  background-color: #ff80ab;
  color: white;
  text-align: center;
  padding: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

form {
  margin-top: 20px;
}

input, select, button {
  padding: 10px;
  margin: 5px;
  font-size: 16px;
  border-radius: 8px;
  border: 2px solid #ff80ab;
}

#game-area {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: #ffe0f0;
  border: 2px dashed #ff80ab;
  overflow: hidden;
}

#cat {
  position: absolute;
  width: 100px;
  height: auto;
  cursor: pointer;
  transition: top 0.3s, left 0.3s;
}

#game-area {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: #e0ffe0;
  border: 2px dashed #66bb6a;
  overflow: hidden;
}

.frog {
  position: absolute;
  width: 60px;
  height: auto;
  cursor: pointer;
  transition: top 0.3s, left 0.3s;
}

#gameCanvas {
  background-color: #000;
  display: block;
  margin: 0 auto;
  border: 4px solid #00ff00;
}

#wordDisplay {
  font-size: 2em;
  text-align: center;
  margin: 20px 0;
}

#wordInput {
  display: block;
  margin: 0 auto;
  padding: 10px;
  font-size: 1.2em;
  width: 60%;
}

#scoreDisplay {
  text-align: center;
  font-size: 1.2em;
  margin-top: 20px;
}


