* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: background-color 500ms ease;
  transition: background-color 500ms ease;
}

html, body {
  height: 100vh;
  width: 100vw;
  background-color: #e8e9e9;
  color: #363636;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-container {
  height: 500px;
  width: 340px;
  background-color: #ffff;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: background-color 500ms ease;
  transition: background-color 500ms ease;
}

.toggle-button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
}

.toggle-button {
  background-color: #f1f1f1;
  height: 40px;
  padding: 10px;
  width: 100px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  z-index: 1;
  color: #363636;
  -webkit-transition: background-color 500ms ease;
  transition: background-color 500ms ease;
}

.toggle-button button {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  background-color: inherit;
  font-size: 1.2rem;
  -webkit-transition: opacity 500ms ease;
  transition: opacity 500ms ease;
}

.toggle-button #night-mode {
  opacity: 0.2;
  background-color: inherit;
  color: inherit;
}

.toggle-button #light-mode {
  background-color: inherit;
  color: inherit;
}

.keys-container {
  background-color: #f1f1f1;
  height: 100%;
  border: none;
  border-radius: inherit;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: (1fr)[5];
      grid-template-rows: repeat(5, 1fr);
  grid-gap: 20px;
  padding: 20px;
}

.keys-container button {
  border: none;
  border-radius: inherit;
  font-size: 1.5rem;
  font-weight: bold;
}

.input-container {
  background-color: #ffff;
  height: 100%;
  border-radius: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.input-container .answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bolder;
  height: 80px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 3rem;
  padding: 10px;
  color: inherit;
}

.input-container .equation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0px 10px;
  color: inherit;
}

.number-keys {
  background-color: #ececec;
  color: inherit;
}

.operator-keys {
  background-color: #ececec;
  color: #ED8282;
}

.special-operation {
  background-color: #ececec;
  color: #41FBD9;
}

.night-mode {
  background-color: #22252d;
  color: #ececec;
}

.night-mode2 {
  background-color: #2a2d35;
  color: #ececec;
}

.night-mode3 {
  background-color: #22252d;
}

@media (max-width: 600px) {
  .main-container {
    height: 100vh;
    width: 100vw;
    border-radius: 0px;
  }
  .keys-container {
    border-radius: 15px;
  }
}
/*# sourceMappingURL=style.css.map */