* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.wrapper {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #000; /* changed to black */
}

.logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
.downtime-text {
  width: 100%;
  font-size: 32px;
  font-weight: 700;
  padding: 8px;
  color: #ff0000;
  line-height: 36px;
}
@media (max-width: 768px) {
  .downtime-text {
    font-size: 18px;
    line-height: 24px;
  }
}

#download-button-text {
  border-radius: 8px;
  border: 1px solid #f3ce98;
  background: linear-gradient(127deg, #f2ce97 9.99%, #87581d 115.22%);
}


