html {
  font-family: sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f3f4f6; 
}


#wrapper {
  box-sizing: border-box;
  width: 100%;
  max-width: 420px;
  padding: 25px 20px;
  text-align: center;
  background-color: #0f766e; 
  color: #ffffff;
  font-size: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


h1 {
  margin: 0 0 16px;
  padding: 12px 0;
  background-color: #1d4ed8; 
  border-radius: 10px;
  font-size: 26px;
}

p {
  font-size: 15px;
  margin: 8px 0 12px;
}


#guessField {
  width: 100%;
  max-width: 260px;
  height: 45px;
  font-size: 22px;
  margin-top: 15px;
  border-radius: 8px;
  border: 2px solid #6c6d6d;
  text-align: center;
  color: #111827;
}


#subt {
  background-color: #22c55e;
  color: #ffffff;
  width: 100%;
  max-width: 260px;
  height: 45px;
  border-radius: 8px;
  font-size: 18px;
  border: none;
  margin-top: 18px;
  cursor: pointer;
  transition: transform 0.1s ease, opacity 0.15s ease;
}

#subt:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

button {
  background-color: #111827;
  color: #ffffff;
  width: 100%;
  max-width: 260px;
  height: 42px;
  border-radius: 8px;
  font-size: 16px;
  border: none;
  margin-top: 14px;
  cursor: pointer;
  transition: transform 0.1s ease, opacity 0.15s ease;
}

button:hover {
  opacity: 0.9;
  transform: translateY(-1px);

.guesses {
  margin-top: 15px;
  padding: 8px 10px;
  background-color: #f97316; 
  color: #ffffff;
  border-radius: 8px;
  font-size: 14px;
}


.lastResult {
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
}

}