body {
        margin: 0;
        padding: 0;
        background-color: #F6F7FF;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100vh;
      }

      #poweredBy {
      position: fixed;
        font-size: 18px;
        color: #262525; /* Set the text color */
      	bottom: 0;
      	margin-bottom: 5%;
      }

      #logo {
        width: 100px;
        height: 100px;
      }

#app-name {
  font-size: 24px;
   font-weight: bold;
    color: #000000;
        margin-top: 20px;
      }

.battery {
  position: fixed;
  bottom: 0;

  margin: 0 auto;
 margin-bottom: 10%;
  margin-top: 15%;
  width: 140px;
  border: 2px solid  rgba(0, 176, 70, 1);
  height: 32px;
  border-radius: 10px;
}

.battery:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  height: 20px;
  background-color: green;
  border-radius: 5px;
  animation: full 8s linear infinite;
}

.battery:after {
  content: "";
  position: absolute;
  right: -12px;
  top: 6px;
  width: 8px;
  height: 20px;
  background-color: rgba(0, 176, 70, 1);
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}

@keyframes full {
  0% {
    width: 0%;
  }
  25% {
    width: 24%;
  }
  50% {
    width: 48%;
  }
  75% {
    width: 72%;
  }
  100% {
    width: 96%;
  }
}