@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
    font-family: "Anonymous Pro", monospace;
}
body {
  background-image: url('/bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
    justify-content: center;
    align-items: center;
}
.container {
  background: rgba(255, 255, 255, 0.43);
  backdrop-filter: blur(10px);
  max-width: 400px;
  margin: 80px auto;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  text-align: center;
}
h1 {
  color: #412E1E;
  font-weight: bold;
  margin-bottom: 24px;
}
input[type="text"] {
  padding: 10px 15px;
  width: 90%;
  margin-bottom: 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 20px;
}
button {
  padding: 15px 24px;
  border: none;
  background: #412E1E;
  width: 90%;
  color: #fff;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
}
.result {
  margin-top: 20px;
  font-size: 1.2em;
  font-weight: bold;
}
