:root {
  font-family: Inter, sans-serif;
  font-feature-settings: "liga" 1, "calt" 1; /* fix for Chrome */
}

@supports (font-variation-settings: normal) {
  :root {
    font-family: InterVariable, sans-serif;
  }
}

body {
  background-color: #0f172a;
  color: white;
}

a {
  color: white;
}

h1 {
  font-weight: 800;
  font-size: 2rem;
}

h2 {
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
}

h3 {
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.mt-3 {
  margin-top: 1.125rem;
}

.card {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6.6px);
  -webkit-backdrop-filter: blur(6.6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1.5rem;
}

.monospace {
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-style: normal;
}

.container {
  margin: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 600px) {
  .md-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: auto auto;
  }
}

.tall {
  grid-row: 1 / 3;
}

.vertical-line {
  border-left: 6px dotted white;
  height: 10rem;
}
