/* Write your global styles here, in PostCSS syntax */
/*
@import "https://unpkg.com/open-props/src/index.css";
@import "open-props/postcss/style";
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --content-max-width: 120ch;
  --content-width: calc(100vw - 2rem);
  --font-sans: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
  font-family: var(--font-sans);
}

body,
html {
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

body {
  display: grid;
  justify-items: center;
  gap: 5rem;
  align-items: baseline;
  background: hsl(0 0% 30%);
  color: white;
}


a {
  text-decoration: none;
  color: inherit;
}