* {
  margin: 0;
  padding: 0;
}

:root {
  --black: black;
  --white: white;
  --gray: #9b9b9a;
  --blue: rgb(0, 178, 255);
}

@font-face {
  font-family: Inter;
  src: url(/fonts/Inter-variable_wght.ttf);
}

body {
  margin: auto;
  padding: 40px;
  background-color: white;
  max-width: 550px;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 14px;
}

header {
  margin-bottom: 24px;
  p {
    margin-bottom: 4px;
  }
  span {
    color: var(--gray);
  }
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: all 0.2s;
}

a:hover {
  color: rgba(0, 178, 255, 0.8);
}

section {
  margin-bottom: 32px;

  p {
    margin-bottom: 16px;
  }
}
