h1 {
    margin-top: 0px;
    margin-bottom: 40px;
    color: #08487d;
    font-size: 34px;
    line-height: 40px;
    font-weight: 700;
    text-align: center;
  }
  
  .body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #205b8c;
    background-image: url('https://c.answersincme.com/assets/images/hero_12_2023.png');
    background-position: 50% 0%;
    background-size: 100%;
    background-repeat: no-repeat;
    font-family: 'PT Sans', sans-serif;
  }
  
  .topbar {
        -webkit-backdrop-filter: blur(5px);
          background: linear-gradient(90deg, rgba(171,16,51,1) 0%, rgba(171,16,51,1) 10%, rgba(8,72,125,1) 90%, rgba(8,72,125,1) 100%);
      
    width: 100%;
    margin-bottom: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: rgba(8, 72, 125, 0.5);
  }
  
  .logo {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
  
  .content {
    display: inline-block;
    padding: 40px;
    border-radius: 5px;
    background-color: #fff;
  }
  
  .contentsplit {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    grid-auto-columns: 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  
  .contentleft {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .contentright {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .regcta {
    margin-top: 20px;
    padding: 10px 25px;
    border-radius: 20px;
    background-color: #3b78c3;
    font-size: 16px;
    line-height: 20px;
  }
  
  @media screen and (max-width: 991px) {
    .content {
      margin-right: 20px;
      margin-left: 20px;
    }
  }
  
  @media screen and (max-width: 767px) {
    h1 {
      font-size: 28px;
      line-height: 32px;
    }
  
    .contentsplit {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
  }
  
  @media screen and (max-width: 479px) {
    h1 {
      margin-bottom: 20px;
      font-size: 24px;
      line-height: 30px;
    }
  
    .body {
      background-size: 480px;
    }
  
    .content {
      padding: 20px;
    }
  
    .contentsplit {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
    }
  
    .regcta {
      margin-top: 10px;
    }
  }