* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #ecf0f3;
  outline: none;
}

.container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Calculator {
  display: grid;
  grid-template-columns: repeat(4, 68px);
  background-color: #ecf0f3;
  border-radius: 30px;
  padding: 15px;
  box-shadow: inset 5px 5px 12px #ffffff, 5px 5px 12px rgba(0, 0, 0, 0.16);
}

input {
  grid-column: span 4;
  height: 70px;
  width: 260px;
  background-color: #ecf0f3;
  box-shadow: inset -5px -5px 12px #ffffff,
    inset 5px 5px 12px rgba(0, 0, 0, 0.16);
  border: none;
  border-radius: 20px;
  color: rgba(70, 70, 70);
  font-size: 50px;
  text-align: end;
  margin: 30px auto;
}

button {
  height: 48px;
  width: 48px;
  background-color: #ecf0f3;
  box-shadow: -5px -5px 12px #ffffff, 5px 5px 12px rgba(0, 0, 0, 0.16);
  border: none;
  border-radius: 50%;
  margin: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s;
}

button:hover {
    box-shadow: -5px -5px 12px #ffffff, 5px 5px 12px rgba(168, 26, 26, 0.363);
}

.equal {
  width: 115px;
  border-radius: 20px;
}
