#buzz {
  width: 200px;
  height: 200px;
  font-size: 30px;
}

body {
  background-image: url("./island_background.jpg");
  background-size: 100% 100%;
  color: darkslategrey;;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 95vh;
  margin: 0;
}

.container {
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  width: 350px;
}

h1 {
  margin-bottom: 1.5rem;
}

input {
  width: 80%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 5px;
  text-align: center;
  font-size: 16px;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

button {
  background-color: #22c55e;
  border: none;
  padding: 0.7rem 1rem;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  margin: 0.3rem;
  transition: background 0.2s ease;
}

button:hover {
  background-color: #16a34a;
}

button:disabled {
  background-color: #64748b;
  cursor: not-allowed;
}

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

.admin {
  margin-top: 1.5rem;
}

#reset {
  color: black;
  background: rgba(255, 245, 220);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

#reset:hover {
  background-color: #ef4444;
}
