html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: rgb(23, 23, 23);
  font-family: "Open Sans", system-ui, -apple-system, blinkmacsystemfont,
    "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif;
  line-height: 1.4;
  color: #d7d0c9;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 350;
  line-height: 1.25;
  color: #f4dabe;
}

p {
  margin-top: 0.5rem;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 500px;
  padding: 0 1rem;
  margin-top: 150px;
  transition: margin-top 0.5s ease-in-out;
}

@media (max-width: 500px) {
  .main {
    margin-top: 16px;
  }
}

.site-logo {
  max-width: 80vw;
}

.root {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.center {
  text-align: center;
}

.nav {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  margin-top: 1rem;
}

.nav a {
  margin: 0 0.5rem;
  color: #f4dabe;
  text-decoration: none;
}
