* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

body {
  background-color: #1f2937; /* Gray-800 */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  background: #111827; /* Gray-900 */
  padding: 30px;
  width: 350px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.calc-text {
  margin-bottom: 20px;
  padding: 10px;
  background-color: #1f2937;
  border-radius: 10px;
}

.calc-text p {
  width: 100%;
  font-size: 3rem;
  text-align: end;
  color: #d1d5db; /* Gray-300 */
  word-wrap: break-word;
  word-break: break-all;
}

button {
  font-size: 1.5rem;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  height: 65px;
  width: 65px;
  transition: 0.2s;
}

button:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.calc-keys {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.key-zero {
  grid-column: span 2;
  width: 100%;
  border-radius: 14px;
}

.key-operate {
  background: #14b8a6; /* Teal-500 */
  color: #fff;
}

.key-others {
  background: #374151; /* Gray-700 */
  color: #e5e7eb; /* Gray-200 */
}

.numbers {
  background: #1f2937; /* Gray-800 */
  color: #f3f4f6; /* Gray-100 */
}

button:active {
  transform: scale(0.98);
    }
