body,
html {
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  flex-direction: column; /* Stack items vertically */
  font-family: "Poppins", sans-serif; /* Use Poppins as the primary font */
}

.logo-container img {
  max-width: 100%;
  max-height: 50vh;
  width: auto;
  height: auto;
}

.message-container {
  color: #ffffff;
  text-align: center;
  max-width: 80%;
}

.note,
.warning {
  margin-top: 20px;
  padding: 10px;
  border-radius: 4px;
}

.note {
  background-color: #007aff;
}

.warning {
  background-color: #ff2d55;
}

@media (max-width: 768px) {
  .logo-container {
    margin-top: 20px;
    .logo-container img {
      max-height: 40vh;
    }
  }
}
