* {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  background: #eaebec;
}

.container {
  width: 400px;
  margin: auto;
}

.calc-body {
  width: 275px;
  margin: auto;
  min-height: 400px;
  border: solid 1px #3a4655;
  box-shadow: 0 8px 50px -7px black;
}

.calc-screen {
  background: #3a4655;
  width: 100%;
  height: 150px;
  padding: 20px;
}

.calc-operation {
  text-align: right;
  color: #727b86;
  font-size: 21px;
  padding-bottom: 10px;
  border-bottom: dotted 1px;
  overflow-x: auto;
  white-space: nowrap;
}

.calc-typed {
  margin-top: 20px;
  font-size: 45px;
  text-align: right;
  color: #fff;

  overflow-x: auto;
  white-space: nowrap;
}

.calc-button-row {
  width: 100%;
  background: #3c4857;
}

.button {
  width: 25%;
  background: #425062;
  color: #fff;
  padding: 20px;
  display: inline-block;
  font-size: 25px;
  text-align: center;
  vertical-align: middle;
  margin-right: -4px;
  border-right: solid 2px #3c4857;
  border-bottom: solid 2px #3c4857;
  transition: all 0.2s ease-in-out;
}

.button.l {
  color: #aeb3ba;
  background: #404d5e;
}

.button.c {
  color: #d95d4e;
  background: #404d5e;
}

.button:hover {
  background: #e0b612;
  transform: rotate(5deg);
  cursor: pointer;
}

.button.c:hover,
.button.l:hover {
  background: #e0b612;
  color: #fff;
}

.blink-me {
  color: #e0b612;
}

.copyright {
  text-align: center;
  margin-top: 3rem;
}

.copyright a {
  color: #d95d4e;
  text-decoration: none;
  font-weight: bold;
}

.copyright a:hover {
  font-weight: normal;
}
