/* 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{list-style: none; padding: 0; display: flex; column-gap: 18px;}

  a{text-decoration: none;}

  @media (prefers-reduced-motion: no-preference) {
    html {
      interpolate-size: allow-keywords;
    }
  }