body {
  margin: 0;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-repeat: no-repeat;
  background-image: url('https://images7.alphacoders.com/133/1339214.png');
  background-size: cover;
}

.container {
  background-color: #fff0fa;
  opacity: 0.9;
  border: 6px dashed #ff99cc;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(255, 105, 180, 0.3);
  text-align: center;
  max-width: 500px;
  width: 90%;
}

h2 {
  color: #ff66b2;
  font-size: 2em;
  margin-bottom: 10px;
}

h3 {
  color: #cb57a5;
  font-size: 1.5em;
}

p {
  color: #d63384;
  font-size: 1.2em;
  margin: 10px 0;
}

#randomWord {
  font-size: 2.5em;
  font-weight: bold;
  color: #ff1493;
  margin: 20px 0;
}

input[type="text"] {
  padding: 10px;
  font-size: 1.2em;
  border: 2px solid #ffb6c1;
  border-radius: 12px;
  outline: none;
  width: 80%;
  text-align: center;
  background-color: #fffafa;
  color: #d63384;
  transition: box-shadow 0.3s;
}

input[type="text"]:focus {
  box-shadow: 0 0 10px #ffb6c1;
}

.time-container,
.score-container {
  font-size: 1.3em;
  background: #ffe0ec;
  padding: 8px;
  border-radius: 10px;
  display: inline-block;
  margin: 10px 5px;
  color: #c71585;
}

.end-game-container {
  margin-top: 30px;
  font-size: 1.5em;
  color: #ff3366;
  font-weight: bold;
}

button {
    border-radius: 50px;
    border-color: #ab587c;
    background: #d676a0;
    font-size: large;
    color: white;
    box-shadow: none;
    transform: scale(1.3);
    margin-top: 20px;
}
