* {
  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: #caf0f8;
  font-family: "Poppins", sans-serif;
}
h1 {
  font-size: 50px;
  font-weight: 900;
  color: #023e8a;
  margin-top: 20px;
  margin-left: 50px;
  font-size: 90px;
  text-align: center;
}
.h1Back {
  width: 50%;
  text-align: center;
  position: relative;
  top: -135px;
  left: 25%;
  overflow: hidden;
  color: #90e0ef;
  z-index: -1;
}
.calci {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #48cae4;
  padding: 50px;
}

.disp input {
  height: 40px;
  border: 5px solid #90e0ef;
  text-align: center;
  width: auto;
}
.body {
  display: flex;
}
.nos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 10px;
  padding: 10px;
}
.nos input {
  color: #000;
}
.operators {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 10px;
  padding: 10px;
}
.filter {
  display: flex;
  flex-direction: column;
}
.sus {
  font-size: 15px;
  padding: 2px;
  background-color: #90e0ef;
}
.body input {
  filter: drop-shadow(0px 1px 1px #000);
  border: solid 2px #90e0ef;
}
.git {
  border-radius: 4px;
  padding: 2px;
  color: #90e0ef;
  background-color: #90e0ef;
  filter: drop-shadow(0px 1px 1px #000);
  border: solid 2px #90e0ef;
}
.git:hover {
  background-color: #90e0ef;
}

.number,
.ops {
  background-color: #90e0ef;
}

.body input:hover {
  cursor: pointer;
  transform: translateY(-2px);
  filter: drop-shadow(0px 5px 3px #023e8a);
}
.body input:active {
  border: solid 2px #023e8a;
}
.nos input {
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 4px;
  padding: 6px;
}
.filter {
  background-color: #0096c7;
  padding: 2px 15px;
  border-radius: 4px;
}
.filter label {
  color: #000;
  text-align: center;
}
