* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background-color: lightgray;
}
body main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: linear-gradient(lightpink, lightblue);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.541);
  border: none;
  border-radius: 20px;
}
body main .wraper {
  position: relative;
  left: 5%;
  top: 5%;
  max-width: 300px;
  max-height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body main .wraper svg {
  position: absolute;
  width: 25px;
  height: 25px;
  z-index: 999;
  animation: spin 3s linear infinite;
  position: absolute;
  top: 0.2rem;
  right: -0.5rem;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
body main .wraper .solarCharger {
  width: 80px;
  height: 20px;
  background-color: whitesmoke;
  border: none;
  border-radius: 5px;
  position: relative;
  right: -80px;
}
body main .wraper .display #display {
  border: none;
  border-radius: 10px;
  text-align: end;
  font-weight: 400;
  font-size: 20px;
  padding: 9px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 12px 0 19px 0;
  width: 100%;
}
body main .wraper .buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
}
body main .wraper .buttons button {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: whitesmoke;
  font-weight: 400;
  font-size: 15px;
  cursor: pointer;
}
body main .wraper .buttons button:hover {
  position: relative;
  color: orangered;
}
body main .wraper .buttons button:hover::after {
  content: "";
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid orangered;
  border-radius: 50%;
  box-shadow: 0 0 10px gray;
}/*# sourceMappingURL=calcstyle.css.map */