body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    position: relative;
  }
  
/* Style for all h1 headers */
  h1 {
    font-size: 100px;
    margin-bottom: 20px;
    color: #000000;
  }

/* Style for the continue button */  
  .continue-button {
    background-color: #ffffff;
    color: #000000;
    padding: 10px 20px;
    border: 2px solid #000000;
    border-radius: 5px;
    font-size: 30px;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* Style for the light blue banner */
  body::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 300px;
    background-color: #339EFF;
    transform: translateY(-50%);
    z-index: -1;
  }