@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&family=Ubuntu:wght@300&display=swap');

html,
body {
  background-image: linear-gradient(to bottom right, rgb(228, 21, 190), rgb(32, 56, 214));
  background-attachment: fixed;
}

.text-center {
  text-align: center;
  padding: 20px 30px;
  color: rgb(255, 255, 255);
  text-shadow:10px 10px 10px rgb(0, 0, 0); ;
}

.button {
  height: 60px;
  width: 60px;
  border: 0;
  border-radius: 30px;
  margin: 5px;
  font-size: 20px;
  cursor: pointer;
  transition: all 200ms ease;
}
.equal{
  width: 140px;
}
.button:hover {
  transform:scale(1.1);
  box-shadow:5px 10px 20px #090909;
}
.container{
  height:100%;
  width: 100%;
  display: grid;
  place-content: center;
}
.calculater {
  position: relative;
  height: auto;
  width: auto;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 0 60px #090909;
}

.row {
  margin: 8px 0;
}

.row input {
  width: 281px;
  font-size: 25px;
  margin: 0;
  padding: 10px 0px;
  border: 2px solid rgb(46, 65, 231);
  border-radius: 10px;
}
.container-fluid{
  font-size: 20px;
  padding-top:80px;
}