/* node_modules/modern-css-reset/src/reset.css */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
ul[role=list],
ol[role=list] {
  list-style: none;
}
html:focus-within {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
}
img,
picture {
  max-width: 100%;
  display: block;
}
input,
button,
textarea,
select {
  font: inherit;
}
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* src/index.css */
html,
body {
  font-family: "Inconsolata", sans-serif;
  background: #f3f3f3;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: normal;
  font-weight: normal;
}
h1 {
  font-size: 4rem;
  font-weight: 500;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
a {
  color: inherit;
  font-size: 1.5rem;
  text-decoration: none;
}
a:hover > * {
  text-decoration: underline;
}
ul {
  font-size: 1.5rem;
}

/* src/components/Block/index.css */
.block {
  margin: 1rem;
}

/* src/components/Section/index.css */
.section {
  padding: 1rem 2rem;
}

/* src/components/IconLink/index.css */
.icon-link {
  display: inline-flex;
  align-items: center;
}
.icon-link:hover > .icon-link-icon {
  text-decoration: none;
}
.icon-link-icon {
  display: flex;
}
