* {
  Font-family: monospace;
}

body {
  margin: 0;
  padding: 0;
  font-family: monospace;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}

pre {
  line-height: initial;
}

figure {
  margin: 0;
}

hr {
  height: 1px;
  color: #e9e9ed;
  background: #e9e9ed;
  font-size: 0;
  border: 0;
  margin-top: 32px;
  margin-bottom: 32px;
}

code,
pre:has(code) {
  background-color: #f5f5f5;
  color: #e4240e;
  padding: .25em .5em;
  line-height: 1.5;
}

pre.home-console {
  font-size: .75em;
}

@media (min-width: 576px) {
  pre.home-console {
    font-size: 1em;
  } 
}

.button {
  background-color: #0060df;
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 10px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  border-radius: 4px;
  transition: background-color .1s,box-shadow .1s,color .1s;
}

.button:hover {
  background-color: #0250bb;
}

#page {
  max-width: 950px;
  padding-top: 12px;
  padding-right: 15px;
  padding-bottom: 32px;
  padding-left: 15px;
}

.site-main {
  padding-top: 16px;
  padding-bottom: 32px;
}

.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.navbar li {
  display: inline;
  padding: 8px 4px;
}

.entry-header figure img {
  width: 100%;
}

.grid-cards .cards figure img {
  object-fit: cover;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
  }
}