* {
  box-sizing: border-box;
}

:root {
  --clr-primary: oklch(25% 0.07 155);
  --clr-text: oklch(100% 0 0);
}

body {
  font-family: system-ui;
  block-size: 100dvh;
  color: var(--clr-text);
  background-color: var(--clr-primary);
  font-weight: 300;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}

main {
  padding: 2rem;
  max-inline-size: 70ch;
  margin: 0 auto;
}

p {
  margin-block: 0 1em;
}

h1,
h2,
h3 {
  font-weight: 800;
}

h1 {
  font-size: 2rem;
  margin-block: 1em;
  font-weight: 300;
  text-transform: uppercase;
}

h2 {
  font-size: 1.5rem;
  margin-block: 2em 0.5em;
}

h3 {
  font-size: 1.25rem;
  margin-block: 2em 0.5em;
}

.start {
  display: grid;
  place-content: center;

  main {
    inline-size: min(60vw, 250px);
    text-align: center;
  }
}

.logo {
  margin-block: 0 1.25rem;

  svg {
    display: block;
    block-size: 100%;
    inline-size: auto;
  }

  &.small {
    inline-size: 10rem;
  }
}

a {
  color: var(--clr-text);
  text-decoration: none;
  font-weight: 600;

  &:hover {
    text-decoration: underline;
  }
}
