
  html {
    min-height: 100%;
    font-family: 'Nunito', sans-serif;
    -webkit-font-smoothing: antialiased;
  }
  
  body {
    
    line-height: 1.5;
  }
  
  h1 {
    font-weight: 200;
    font-size: 3rem;
    color: white;
    text-align: center;
  }
  
  .accordion {
    background: linear-gradient(to bottom right, #005678, #005678);
    max-width: 400px;
    background: #005678;
    margin: 0 auto;
  }
  
  .accordion-header {
    border-bottom: 1px solid #005678;
    color: white;
    cursor: pointer;
    font-weight: 700;
    padding: 1.5rem;
  }
  
  .accordion-header:hover {
    background: #005678;
  }
  
  .accordion-content {
    display: none;
    border-bottom: 0px solid #DDE0E7;
    background: #005678;
    padding: 1.5rem;
   
  }
  
  .accordion-header::before {
    content: '';
    vertical-align: middle;
    display: inline-block;
    width: .75rem;
    height: .75rem;
    border-radius: 50%;
    background-color: #B1B5BE;
    margin-right: .75rem;
  }
  
  .active.accordion-header::before {
    background-color:#CCE5FF;
  }