* {
  margin: 0px;
  padding: 0px;
  font-family: poppins, sans-serif, Arial, Helvetica;
  box-sizing: border-box;
}

body {
  /* background-color:#E3E9EC; */
  background-image: linear-gradient(
    90deg,
    red,
    orange,
    yellow,
    pink,
    indigo,
    green
  );
  width: 100%;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.calculator {
  border: 0px;
  background-color: #555a60;
  background-image: linear-gradient(#929396 1%, 5%, #3a4451 100%);
  padding: 2rem 0.6rem;
  border-radius: 0.8rem;
  box-shadow: 2px 2px 8px white;
}
input {
  background: transparent;
  width: 20rem;
  font-size: 2.5rem;
  padding-top: 2rem;
  margin: 0.5rem;
  border: none;
  text-align: right;
  cursor: text;
}
input::placeholder {
  color: #e3e9ec;
  align-items: flex-end;
}

.row {
  display: flex;
  justify-content: space-between;
}
button {
  background: transparent;
  width: 5rem;
  height: 5rem;
  color: white;
  font-size: 1.5rem;
  border: none;
  margin: 0px;
  cursor: pointer;
}
.equals {
  width: 10rem;
}
.orange {
  color: #f4ab41;
}
