/* Reset + base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  line-height: 1.4;
  font-size: 18px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

main {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin: 48px auto;
  padding: 16px;
  max-width: 640px;
}

h1 {
  font-size: 28px;
  margin-bottom: 12px;
}

ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding-inline-start: 40px;
}

a {
  transition: color 0.2s ease;
}

a:hover {
  color: #1ecbe1;
}
