body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.5s ease;
  background-color: #222;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.status-box {
  color: white;
  font-size: 2.75em;
  font-weight: bold;
  text-transform: uppercase;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  transition: background-color 0.5s ease;
  background-color: #444;
}

.timestamp {
  margin-top: 10px;
  font-size: 0.30em;
  padding: 10px;
  color: white;
  /* opacity: 0.7; */
  border-radius: 10px;
}



.percentvalue {
  margin-top: 2px;
  font-size: 0.30em;
  color: white;
  opacity: 0.9;
}
