body {
  background-color: #b5e2fa;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  text-align: center;
  font-size: 50px;
  margin: 0;
  padding: 20px 0 20px 0;
}

.frame {
  display: flex;
  flex-direction: column;
  padding: 30px;
  height: 500px;
  width: 400px;
  background-color: #0fa3b1;
  border-style: solid;
  border-color: #f7a072;
  border-width: 1px;
  margin-right: 10px;
}

input {
  height: 60px;
  background-color: #fffeff;
  border-style: solid;
  border-color: #f7a072;
  border-width: 1px;
  padding-bottom: 20px;
  caret-color: transparent;
  text-align: right;
}

.btnsContainer {
  display: flex;
}

.basicContainer {
  display: grid;
  grid-template-columns: 80px 80px 80px 80px;
  padding-top: 30px;
  justify-content: space-between;
  grid-template-rows: 70px 70px 70px 70px 70px;
  gap: 10px;
  width: 400px;
}

button {
  background-color: #f9f7f3;
  border-style: solid;
  border-color: #f7a072;
  border-width: 1px;
  font-size: 30px;
  font-color: 
}

.btn:hover {
   background-color: #edede9;
}

.btn:active {
  transform: translateY(1px);
}

.styleBtn:focus {
  background-color: #ced4da;
}

.equalSign {
  grid-row: 2 / 6;
  grid-column: 4
} 

.calcContainer {
  display: flex;
  justify-content: center;
}

.togBtnContainer {
  display: flex;
  margin-bottom: 10px;
  height: 50px;
  width: 400px;
  align-items: center;
  justify-content: center;
}

p {
  font-size: 25px;
  margin: 0 20px 0 0;
}

.togBtn {
  position: relative;
  width: 70px;
  height: 36px;
  display: inline-block;
}

.togBtn input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #adb5bd;
  border-radius: 30px
}

.toggle:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 6px;
  bottom: 5px;
  background-color: white;
  transition: .4s;
  border-radius: 30px
}

input:checked + .toggle {
  background-color: #f7a072;
}

input:checked + .toggle:before {
  transform: translateX(30px);
}

.sciContainer {
  display: hidden;
  grid-template-columns: 80px 80px;
  padding-top: 30px;
  justify-content: space-between;
  grid-template-rows: 70px 70px 70px 70px 70px;
  gap: 10px;
  margin-right: 10px;
}
