body {
  font-family: "Segoe UI", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: rgb(80, 153, 166);
}

.container {
  background: #fff;
  padding: 30px 40px;
  border-radius: 90px;
  text-align: center;
}

h1 {
  color: #000000;
  margin-bottom: 30px;
  pointer-events: none;
  user-select: none;
  font-size: 2.5em;
}

h2 {
  color: #00796b;
  margin-bottom: 30px;
  pointer-events: none;
  user-select: none;
}

#glass-count {
  font-size: 3em;
  color: #007bff;
  margin: 15px 0;
  user-select: none;
  pointer-events: none;
}

button {
  padding: 10px 25px;
  font-size: 1em;
  border: 2px solid black;
  background-color: #b3417d;
  color: black;
  border-radius: 8px;
  cursor: pointer;
  margin: 0 8px;
}

button:hover {
  background-color: rgb(0, 128, 255);
  color: #000000;
}

#message {
  margin-top: 40px;
  font-size: 1.5em;
  font-weight: bold;
  color: #ff8000;
  min-height: 1.2em;
}

@media (max-width: 768px) {
  .container {
    width: 70%;
    padding: 20px 30px;
  }
}
