
  button, input, textarea, select {
    background-color: transparent;
    border-radius: 0;
    color: inherit;
    line-height: inherit;
    appearance: none;
  }
  
  textarea {
    resize: vertical;
    overflow: auto;
    vertical-align: top;
  }
  
  a {
    color: hsl(250, 84%, 54%);
  }
  
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  img, video, svg {
    display: block;
    max-width: 100%;
  }
  
  @media (min-width: 64rem) {
    body {
      font-size: 1.25rem;
    }
  
    h1 {
      font-size: 3.051rem;
    }
  
    h2 {
      font-size: 2.44rem;
    }
  
    h3 {
      font-size: 1.75rem;
    }
  
    h4 {
      font-size: 1.5625rem;
    }
  }
  
  /* utility classes */
  .fu0-position-relative {
    position: relative;
  }
  
  .fu0-z-index-1 {
    z-index: 1;
  }
  
  .fu0-padding-y-lg {
    padding-top: var(--fu0-space-lg);
    padding-bottom: var(--fu0-space-lg);
  }
  
  .fu0-container {
    width: calc(100% - 2*var(--fu0-space-md));
    margin-left: auto;
    margin-right: auto;
  }
  
  .fu0-max-width-adaptive-md {
    max-width: 32rem;
  }
  
  @media(min-width: 48rem) {
    .fu0-max-width-adaptive-md {
      max-width: 48rem;
    }
  }
  
  @media(min-width: 64rem) {
    .fu0-max-width-adaptive-md {
      max-width: 64rem;
    }
  }
  
  .fu0-text-center {
    text-align: center;
  }
  
  .fu0-margin-bottom-lg {
    margin-bottom: var(--fu0-space-lg);
  }