/* Style sheet for calculator-test */

* {
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

button {
  font-size: 40px;
  padding: 0px;
}

button:focus {
  outline:0;
}

.calculator {
  position: relative;
  margin: auto;
  width: 500px;
  height: 700px;
  border: 2px solid black;
  border-radius: 15px;
  /*transform: scale(0.9,0.9);*/

}

.screen {
  position: relative;
  width: 90%;
  height: 20%;
  margin: auto;
  margin-top: 5%;
  border: 1px solid black;
  border-radius: 15px;

}

#screen-contents {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  bottom: 0px;
  right: 0px;
  padding: 10px;
  padding-right: 20px;
  font-size: 60px;
  text-align: right;
  vertical-align: center;
}

.keypad {
  position: relative;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 90%;
  height: 67%;
  margin: auto;
  margin-bottom: 5%;
  margin-top: 5%;
}

.top-operators {
  display: block;
  width: 100%;
  height: 20%;
  margin-bottom: 20px;
}

.top-operators button {
  display: inline-block;
  width: 22.5%;
  height: 96%;
  margin: 2px;
}

.numpad {
  box-sizing: border-box;
  float: left;
  width: 75%;
  height: 80%;
}

.numpad button {
  display: inline;
  height: 24%;
  width: 30%;
  margin: 2px;
}

.right-operators {
  box-sizing: border-box;
  float: left;
  width: 22.5%;
  height: 80%;
}

.right-operators button {
  display: block;
  width: 100%;
  height: 49%;
  margin: 2px;
}

#clear {
  margin-bottom: 4px;
}

.active-operator {
/*  border: 2px solid #6698FF; */
  border: 2px solid #E41B17;
}





