@charset "ISO-8859-1";
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
}

.calculator {
  background-color: black;
  padding: 3px;
  border-radius: 2px;
  width: 100px;
}

.display {
  width: calc(100% - 1px);
  margin-bottom: 5px;
  padding: 2px;
  font-size: 12px;
  border: none;
  background-color: #333;
  color: white;
}

.keys {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2px;
}

button {
  padding: 2px;
  font-size: 5px;
  border: none;
  background-color: #666;
  color: white;
  border-radius: 2px;
  cursor: pointer;
}

button:hover {
  background-color: #444;
}
