/* RESET CSS STYLES */

  html{
    scroll-behavior: smooth;
    font-size: 16px;
  }

  *, *::before, *::after {
    box-sizing: border-box;
  }

  * {
    font-family: 'Quicksand', sans-serif;
    margin: 0;
  }

  input, textarea, select{
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    border-radius: 6px;
    border: none;
    padding: 6px;
  } input:focus, textarea:focus, select:focus{
    outline: none;
  }

  body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }

  p {
    text-wrap: pretty;
  }
  
  h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
  }

  ul{display: flex; align-items: center; list-style: none; padding: 0; display: flex; column-gap: 18px;}

  a{text-decoration: none; color: unset;}

  h1{font-weight: 700; font-size: 2rem;} /* 32px */
  h2{font-weight: 600; font-size: 1.5rem;} /* 24px */
  h3, label, a{font-weight: 500; font-size: 1.125rem;} /* 18px */
  p {font-weight: 400; font-size: 1rem;} /* 16px */