body {
  margin: 0;
  font-family: Ubuntu;
  background: #081b29;
  color: #fff;
  width: 100%;
  /* color: #00abf0; */
}

#centered-container {
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  justify-content: center; /* Center elements vertically within the container */
  align-items: center; /* Center elements horizontally within the container */
  max-width: 900px;
  /* max-width: 50%; Adjust container width as desired */
  margin: 0 auto; /* Center the container horizontally */
}

/* Optional: Center the timer text (adjust selector if needed) */
#links-container > div {
  text-align: center;
}

.box {
  background: #040c11;
  border: 1px solid #5f5f5f;
  padding: 10px;
  border-radius: 2px;
  max-width: 400px;
  /* box-shadow: 0px 0px 10px 0px #000; */
}

.blue {
  color: #00abf0;
}

.downloadBtn {
  background: #00abf0;
  color: #040c11;
  padding: 15px 20px;
  font-size: 18px;
  border: none;
  margin-bottom: 10px;
  transition: 0.5s;
}
.downloadBtn:hover {
  cursor: pointer;
  background: #0190c9;
}
.color-text {
  color: #9864ec;
}

#adv {
  width: 100%;
  height: 100vh;
  position: fixed;
}