* {
  margin: 0;
  padding: 0;
  font-family: Poppins, sans-serif;
  box-sizing: border-box;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #fff6cc;
}
.container {
  min-width:550px;
  max-width: 750px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(255, 204, 128, 0.4);
}
.container h2 {
  font-weight: 500;
  font-size: 25px;
  border-bottom: 1px solid #ccc;
  padding: 18px 25px;
}
.content {
  margin: 25px 20px 30px;
}
.word {
  font-size: 33px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 24px;
  margin-right: -24px;
}
.detail {
  margin: 25px 0px 20px;
}
.detail p {
  font-size: 18px;
  margin-bottom: 10px;
}
.container input {
  width: 100%;
  height: 60px;
  outline: none;
  padding: 0px 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 18px;
}
.buttons {
  display: flex;
  margin: 20px;
  justify-content: space-between;
}
.buttons button {
  border: none;
  outline: none;
  padding: 15px 0px;
  width: calc(100% / 2 - 10px);
  font-size: 18px;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  color: #ffffff;
}
.refresh-word {
  background-color: #6c757d;
}
.check-word {
  background-color: #9b8afb;
}
