/* Roboto font from Google */
/* Source: https://fonts.google.com/specimen/Roboto */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto Regular"), url("/assets/fonts/roboto/roboto-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto Italic"), url("/assets/fonts/roboto/roboto-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-display: swap;
  src: local("Roboto Bold"), url("/assets/fonts/roboto/roboto-bold.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: bold;
  font-display: swap;
  src: local("Roboto Bold Italic"), url("/assets/fonts/roboto/roboto-bold-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Roboto Light"), url("/assets/fonts/roboto/roboto-light.woff2") format("woff2");
}
:root {
  --typography-default: "Roboto", sans-serif !important;
}

body,
html {
  height: 100%;
  font-family: var(--typography-default) !important;
}

.feature {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  font-size: 1.5rem;
}

.bg-featured-blog {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 15rem;
}

img {
  max-width: 100%;
  height: auto;
}

.docs table thread,
.docs table tbody,
.docs table tfoot,
.docs table tr,
.docs table td {
  border-color: #000;
  border-style: solid;
  border-width: 1px;
}
.docs table thread th,
.docs table tbody th,
.docs table tfoot th,
.docs table tr th,
.docs table td th {
  border-color: #000;
  border-style: solid;
  border-width: 1px;
}

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