* {
    box-sizing: border-box;
  }
  
  body {
    height: 100vh;
    width: 100%;
    margin: 0px;
    padding: 0px;
  }
  
  .homeContainer {
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: hidden;
  }
  
  .header {
    height: 8%;
    color: white;
    /*border-bottom: 5px solid #cc0000;*/
    font-family: "Product Sans", sans-serif;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .content {
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    max-width: 100%;
    min-width: '536px';
    width: 100%;
    flex: 1 1 0%;
    padding: 2rem 1rem;
    background-image: linear-gradient(white, #198ac9);
  }
  
  .card {
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 11px 15px -7px,
      rgba(0, 0, 0, 0.14) 0px 24px 38px 3px, rgba(0, 0, 0, 0.12) 0px 9px 46px 8px;
    border-radius: 5px;
    background-color: white;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 24px;
    font-family: "Product Sans", sans-serif;
    width: 365px;
  }
  
  .red {
    color: #eb1b33;
  }
  
  .card-title {
    color: #eb1b33;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0px;
    padding: 20px 24px 0px;
  }
  
  .sub-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    padding-top: 16px;
    padding-bottom: 24px;
  }
  
  .sub-title-btn {
    -webkit-appearance: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    text-align: inherit;
    color: rgb(50, 154, 229);
    background: inherit;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    border-radius: 0px;
    margin: 0px;
    outline: 0px;
    padding: 0px;
  }
  
  .divider-container {
    color: #1f2935;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 16px;
    text-transform: uppercase;
    user-select: none;
    display: flex;
    font-size: 11px;
    max-width: 100%;
    width: 100%;
    padding: 16px 0px;
  }
  
  .divider-left {
    border-bottom: 1px solid rgb(223, 223, 229);
    flex: 1 1 0%;
    margin: auto 8px auto auto;
  }
  
  .divider-right {
    border-bottom: 1px solid rgb(223, 223, 229);
    flex: 1 1 0%;
    margin: auto auto auto 8px;
  }
  
  .imgLink {
    text-decoration: none;
    display: inline-block;
    margin: 10px;
  }