
*,
*::before,
*::after {
  box-sizing: border-box;
}


body {
  margin: 0;
  padding: 0;
  height: 100vh;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #484848, #b171ed);
  display: flex;
  justify-content: center;
  align-items: center;
}


#wrapper {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  width: 350px;
  max-width: 90vw;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  color: #fff;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
}


#wrapper h1 {
  margin-top: 0;
  font-size: 1.5rem;
}


#wrapper p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.4;
}


.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  font-size:30px;
  font-style: italic;
  font-family: cursive5;
}

.guessfield {
  padding: 10px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
}


.guessSubmit {
  padding: 10px;
  border-radius: 10px;
  border: none;
  background-color: #6a11cb;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.guessSubmit:hover {
  background-color: #2575fc;
}

.resultParas {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}


.lowOrHi {
  font-weight: bold;
  font-size: 1rem;
  margin-top: 1rem;
  min-height: 1.5rem;
}
