*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

#root, #__next {
  isolation: isolate;
}

p, h3, h2, h1 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
  font-size: 1rem;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
}

body {
  font: 100%;
}

header {
  display: grid;
  background-color: white;
  width: 100vw;
  height: 150px;
  box-shadow: 0px 2px 5px rgba(51, 51, 51, 0.15);
}
header .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-content: center;
}
header .container .logo img {
  width: 250px;
}

main {
  margin-top: 40px;
  width: 100vw;
}
main .container {
  display: grid;
  align-content: center;
  gap: 20px;
}

.card-grid {
  display: grid;
  align-content: center;
  gap: 20px;
}
.card-grid.columns {
  grid-template-columns: 1fr 1fr;
}
.card-grid.rows {
  grid-template-rows: 1fr;
}
.card-grid .card {
  display: grid;
  width: 100%;
  height: auto;
  background-color: #EEEDE6;
  padding: 20px;
  border-radius: 12px;
  transition: all 200ms ease-in-out;
}
.card-grid .card.important {
  background-color: #ED7301;
}
.card-grid .card a:link, .card-grid .card a:visited {
  display: block;
  color: #333;
  text-decoration: none;
}
.card-grid .card a:hover, .card-grid .card a:active {
  color: #008a00;
  fill: #008a00;
}
.card-grid .card .content {
  display: grid;
  grid-template-columns: 0.25fr 1fr;
  gap: 20px;
}
.card-grid .card .content.important {
  grid-template-columns: 1fr;
}
.card-grid .card .content.important a:link, .card-grid .card .content.important a:visited {
  display: inline-block;
  color: #FFF;
  text-decoration: underline;
}
.card-grid .card .content.important a:hover, .card-grid .card .content.important a:active {
  color: #00549f;
}
.card-grid .card .content .image svg {
  height: 65px;
  fill: #333;
}
.card-grid .card .content .text ol {
  padding: 0 20px;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100vw;
  height: 75px;
  background-color: #EEEDE6;
  color: #333;
  text-align: left;
}
footer .container {
  display: grid;
  grid-template-columns: 1fr 0.25fr;
}
footer .container .copyright span {
  display: inline-block;
}

.container {
  margin: 20px auto;
  width: 100%;
  max-width: 1040px;
}

a:link, a:visited {
  display: block;
  color: #333;
  text-decoration: none;
}
a:link a:hover, a:link a:active, a:visited a:hover, a:visited a:active {
  color: #008a00;
  fill: #008a00;
}

/*# sourceMappingURL=index.css.map */
