/*Background Colors*/
/*KEY Colors*/
/*text Colors*/
body {
  background-color: hsl(222, 26%, 31%);
  color: hsl(0, 0%, 100%);
}

#toggle {
  background-color: hsl(223, 31%, 20%);
}

.indicator {
  background-color: hsl(6, 63%, 50%);
}

#input {
  background-color: hsl(224, 36%, 15%);
  color: hsl(0, 0%, 100%);
}

.div-btn {
  background-color: hsl(223, 31%, 20%);
}

.btn-num {
  color: hsl(221, 14%, 31%);
  box-shadow: 0 4px 0 0 hsl(28, 16%, 65%);
}

.btn-text {
  color: hsl(0, 0%, 100%);
}

.btn-blue {
  background-color: hsl(225, 21%, 49%);
  box-shadow: 0 4px 0 0 hsl(224, 28%, 35%);
}

.btn-red {
  background-color: hsl(6, 63%, 50%);
  box-shadow: 0 4px 0 0 hsl(6, 70%, 34%);
}

/*Background Colors*/
/*KEY Colors*/
/*text Colors*/
body.theme2 {
  background-color: hsl(0, 0%, 90%);
  color: hsl(60, 10%, 19%);
}

#toggle.theme2 {
  background-color: hsl(0, 5%, 81%);
}

#toggle.theme2 .indicator {
  left: 23px;
  background-color: hsl(25, 98%, 40%);
}

body.theme2 #input {
  background-color: hsl(0, 0%, 93%);
  color: hsl(60, 10%, 19%);
}

body.theme2 .div-btn {
  background-color: hsl(0, 5%, 81%);
}

body.theme2 .btn-num {
  color: hsl(60, 10%, 19%);
  box-shadow: 0 4px 0 0 hsl(28, 16%, 65%);
}

body.theme2 .btn-text {
  color: hsl(0, 0%, 100%);
}

body.theme2 .btn-blue {
  background-color: hsl(185, 42%, 37%);
  box-shadow: 0 4px 0 0 hsl(185, 58%, 25%);
}

body.theme2 .btn-red {
  background-color: hsl(25, 98%, 40%);
  box-shadow: 0 4px 0 0 hsl(25, 99%, 27%);
}

/*Background Colors*/
/*KEY Colors*/
/*text Colors*/
body.theme3 {
  background-color: hsl(268, 75%, 9%);
  color: hsl(52, 100%, 62%);
}

#toggle.theme3 {
  background-color: hsl(268, 71%, 12%);
}

#toggle.theme3 .indicator {
  left: 44px;
  background-color: hsl(176, 100%, 44%);
}

body.theme3 #input {
  background-color: hsl(268, 71%, 12%);
  color: hsl(52, 100%, 62%);
}

body.theme3 .div-btn {
  background-color: hsl(268, 71%, 12%);
}

body.theme3 .btn-num {
  color: hsl(52, 100%, 62%);
  background-color: hsl(268, 47%, 21%);
  box-shadow: 0 4px 0 0 hsl(290, 70%, 36%);
}

body.theme3 .btn-text {
  color: hsl(0, 0%, 100%);
}

body.theme3 .btn-blue {
  background-color: hsl(281, 89%, 26%);
  box-shadow: 0 4px 0 0 hsl(285, 91%, 52%);
}

body.theme3 .btn-red {
  background-color: hsl(176, 100%, 44%);
  color: hsl(198, 20%, 13%);
  box-shadow: 0 4px 0 0 hsl(177, 92%, 70%);
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "League Spartan", Arial;
}

body {
  font-weight: 700;
  margin: 0 auto;
  min-height: 100vh;
  max-width: 500px;
  transition: 0.5s;
}
body main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 25px;
  gap: 30px;
}
body main header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body main header section {
  display: flex;
  align-items: end;
  gap: 25px;
}
body main header section p {
  font-size: 13px;
  padding-bottom: 5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
body main header section div .numbers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60px;
  padding-left: 10px;
}
body main header section div #toggle {
  position: relative;
  display: block;
  width: 70px;
  height: 25px;
  border-radius: 20px;
  transition: 0.5s;
}
body main header section div #toggle .indicator {
  position: absolute;
  top: 2px;
  left: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  transform: scale(0.7);
  transition: 0.5s;
}
body main .calculator {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
body main .calculator #input {
  text-align: right;
  padding: 20px 25px;
  font-size: 40px;
  font-weight: 700;
  width: 100%;
  border: none;
  border-radius: 10px;
}
body main .calculator .div-btn {
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 18px;
}
body main .calculator .div-btn button {
  font-weight: 700;
  border-radius: 5px;
  border: none;
}

.grid-num {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}

.grid-text {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}

.btn-text {
  font-size: 1.2rem;
}

.btn-num {
  font-size: 32px;
  padding: 0.3em 0;
}

.btn-last {
  padding: 0.9em 0;
}

button:hover {
  opacity: 0.6;
}

@media (min-width: 502px) {
  .grid-num, .grid-text {
    gap: 15px;
  }
}/*# sourceMappingURL=main.css.map */