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

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

.calculator {
  background-color: #ecf0f3;
  padding: 15px;
  border-radius: 30px;
  box-shadow: inset 5px 5px 12px white, 5px 5px 12px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.first,
.second,
.third,
.fourth,
.fifth {
  width: 300px;
  display: flex;
  justify-content: center;
  gap: 5px;
}

input {
  height: 70px;
  width: 280px;
  background-color: #ecf0f3;
  box-shadow: inset -5px -5px 12px white, inset 5px 5px 12px rgba(0, 0, 0, 0.16);
  border: none;
  border-radius: 30px;
  color: rgb(70, 70, 70);
  font-size: 50px;
  text-align: end;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 30px;
  padding: 20px;
}

button {
  height: 48px;
  width: 48px;
  border: none;
  background-color: #ecf0f3;
  box-shadow: -5px -5px 12px white, 5px 5px 12px rgba(0, 0, 0, 0.16);
  border: none;
  border-radius: 50%;
  margin: 8px;
  font-size: 16px;
}

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

.equal {
  width: 115px;
  border-radius: 40px;
  background-color: #ecf0f3;
  box-shadow: -5px -5px 12px white, 5px 5px 12px rgba(0, 0, 0, 0.16);
}
