@font-face {
    font-family: AmazonEmber;
    src: url("https://a0.awsstatic.com/libra-css/fonts/amazon-ember/AmazonEmber_Lt.woff");
    font-weight: 400;
    font-style: normal;
    font-size: 12pt;
}

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

body {
    background: #81C2DB;
    font-family: AmazonEmber, Helvetica Neue, Helvetica, Arial, sans-serif;
    color: #ffffff;
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    max-width: 75em;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    padding: env(safe-area-inset-top, 1.5rem) 0 env(safe-area-inset-bottom, 1rem);
}

.logo {
  display: block;
  width: clamp(250px, 40vw, 800px); /* responsive size */
  height: auto;
  object-fit: contain;
}

.notes {
  width: min(65ch, 95%);
  max-width: 44rem;
  margin: 0 auto 0;
  /* remove global text-align so headings aren't forced */
  line-height: 1.5;
  font-size: 1.05rem;
  color: #ffffff;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

/* only paragraphs and lists should be justified */
.notes p,
.notes ol,
.notes li {
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
}

/* Center headings while keeping body text justified */
.notes h1,
.notes h2,
.notes h3 {
  text-align: center;
  margin: 0.5rem 0;
}

/* list spacing for readability */
.notes ol {
  padding-left: 1.25rem;
  margin: 0.25rem 0 1rem;
}

/* link contrast */
.notes a {
  color: #ffffff;
  text-decoration: underline;
}
