.center-container {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically */
  height: 80vh;           /* Makes the container fill the full viewport height */
  width: 100vw;            /* Makes the container fill the full viewport width */
  margin: 0;
}