/*  Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  font-size: 20px;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  width: 100%;

}

img,
picture,
video,
canvas,
svg {
  display: block;
  width: 100%;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  --font-weight: 700;
  margin-bottom: 60px;
}

#root,
#__next {
  isolation: isolate;
}

/* Custom Styles */

a {
  color: rgb(16, 149, 193);
  text-decoration-color: rgb(16, 149, 193);
  text-decoration: none;
}

a:link {}

a:visited {}

a:focus {}

a:hover {
  text-decoration: underline;
}

a:active {}


/*
  AUTO GRID
  Set the minimum item size with `--auto-grid-min-size` and you'll
  get a fully responsive grid with no media queries.
*/
.auto-grid {
  --auto-grid-min-size: 16rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--auto-grid-min-size), 1fr));
  grid-gap: 1rem;
  list-style-type: none !important;
}

/*
    WRAPPER
    A utility with a max width that contains child elements and horizontal centers them
  */
.wrapper {
  max-width: 65rem;
  margin: 0 auto;
  padding: 0 1rem;
  list-style: none;
}

li h3 {
  margin-bottom: .5rem;
}

/* Presentational styles */

.auto-grid li {
  list-style-type: none;
  margin-bottom: 0;
}

body {
  padding: 1rem 0;
  font-family: sans-serif;
}

