@font-face {
  font-family: MD System Regular;
  src: url("../css/fonts/MDSystem-Regular.woff2") format("woff2");
}
@font-face {
  font-family: MD System Bold;
  src: url("../css/fonts/MDSystem-Bold.woff2") format("woff2");
}
@font-face {
  font-family: MD System Italic;
  src: url("../css/fonts/MDSystem-Italic.woff2") format("woff2");
}
* {
  box-sizing: border-box;
}

body {
  font-family: "MD System Regular", sans-serif;
  background-color: whitesmoke;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
  font-size: 16px;
}

h1 {
  font-family: "MD System Bold", sans-serif;
  font-size: 2.5rem;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "MD System Bold", sans-serif;
  color: black;
}

a {
  color: black;
}

.site-header {
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 1rem;
}
.site-header nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1000px) {
  .site-header nav {
    display: block;
  }
}
.site-header nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 1rem;
}
.site-header nav ul li a {
  border: 1px solid black;
  padding: 0.2rem 0.5rem;
  text-decoration: none;
  color: black;
  font-weight: bold;
  background-color: white;
}
.site-header nav ul li a:hover {
  background-color: black;
  color: white;
}

.container {
  width: 100%;
  padding: 1rem;
  max-width: 65ch;
  margin: 0;
}
.container header {
  margin-bottom: 1rem;
}
.container header.margin-b {
  margin-bottom: 3rem;
}
.container header .info {
  display: flex;
  gap: 3rem;
}
.container h2 {
  font-size: 2rem;
  margin: 0.5rem 0 1rem;
}

i {
  font-family: "MD System Italic", sans-serif;
}

.highlight {
  border: 1px solid black;
  border-radius: 5px;
  margin-bottom: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.2rem 0.8rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media screen and (max-width: 1000px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.flex {
  display: flex;
  gap: 0.4rem;
}
.flex.column {
  flex-direction: column;
}

.outline {
  border-bottom: 1px solid black;
}/*# sourceMappingURL=styles.css.map */