/* @import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css"); */
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2;
  outline: -webkit-focus-ring-color auto 5px;
}
a {
  text-decoration: none;
}

@font-face {
  font-family: "Bicyclette";
  src: url("../fonts/Bicyclette_Regular.otf")
    format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Bicyclette";
  src: url("../fonts/Bicyclette_Bold.otf")
    format("opentype");
  font-weight: 700;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6, p {
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

p {
  font-size: 1.125rem;
  line-height: 1.25rem;
}

h2 {
  font-size: 2.25rem;
  font-family: "Bicyclette", Helvetica;
}

h3 {
  font-size: 1.125rem;
  font-family: "Bicyclette", Helvetica;
}

.home .cards-2 {
  gap: 4%;
}

.blog-card, .home-card {
  padding: 1rem;
  border-radius: 1.25rem;
  line-height: 1;
}

.home .cards .cards-2 article:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-card img, .home-card img {
  border-radius: .75rem;
}

.blog-card .blog-topic {
  font-size: 0.75rem;
}