.fullPageContainer {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f0f0f0; /* Optional background color */
  }
  
  .page {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    width: 100%;
    height: 100%;
  }
  