* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  color: #000;
  list-style: none;
  text-decoration: none;
  transition: all 0.5s;
  caret-color: transparent;
}
body {
  background-color: #c7f9cc;
  font-family: "Poppins", sans-serif;
}
h1 {
  font-size: 50px;
  font-weight: 900;
  color: #22577a;
  margin-top: 20px;
  margin-left: 50px;
  font-size: 90px;
  text-align: center;
}
.h1Back {
  /* display: inline;
    text-align: center;
    position: relative;
    top: -120px;
    left: 650px;
    overflow: hidden;
    color: #38A3A5;
    z-index: -1; */

  text-align: center;
  position: relative;
  top: -140px;
  left: 25%;
  overflow: hidden;
  color: #38a3a5;
  z-index: -1;
  width: 50%;
}
.calci {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #38a3a5;
  padding: 50px;
}

.disp input {
  height: 40px;
  border: 5px solid #22577a;
  text-align: center;
  width: auto;
}
.body {
  display: flex;
}
.nos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 10px;
  padding: 10px;
}
.operators {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 10px;
  padding: 10px;
}

#equal {
  grid-column: span 2;
}
.body input {
  border-radius: 4px;
  padding: 6px;
  color: #edf2f4;
  filter: drop-shadow(0px 1px 1px #000);
  border: solid 2px #22577a;
}
.git {
  border-radius: 4px;
  padding: 2px;
  color: #edf2f4;
  background-color: #38a3a5;
  filter: drop-shadow(0px 1px 1px #000);
  border: solid 2px #22577a;
}
.git:hover {
  background-color: #c7f9cc;
}
.none {
  z-index: 5;
  background-color: #38a3a5;
  filter: drop-shadow(0px 0px 0px #000);
}
.number {
  background-color: #22577a;
}
.sus {
  background-color: #38a3a5;
}
.ops {
  background-color: #22577a;
}
.body input:hover {
  cursor: pointer;
  transform: translateY(-2px);
  filter: drop-shadow(0px 5px 3px #c7f9cc);
}
.body input:active {
  border: solid 2px #80ed99;
}
.nos input {
  padding-left: 15px;
  padding-right: 15px;
}
