.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

/* Make the buttons larger and have the same width */
.btn-dark {
  font-size: 24px;
  padding: 30px 0; /* Adjust the padding as needed */
  width: 500px; /* Set the desired width */
  text-align: center;
}
@media (max-width: 768px) {
  .btn-secondary {
    font-size: 18px;
    width: 150px;
  }
}

@media (max-width: 480px) {
  .btn-secondary {
    font-size: 16px;
    width: 120px;
  }
}