*{margin:0;padding:0;box-sizing:border-box}
html,body{height:100%}
body{
  background:#fff;
  color:#0b2242;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  -webkit-font-smoothing:antialiased;
}
main{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:2.5rem;
  padding:2rem;
}
main img{
  width:100%;
  max-width:280px;
  height:auto;
  display:block;
}
.blurb{
  max-width:480px;
  text-align:center;
  font-size:15px;
  line-height:1.5;
  opacity:0.8;
  margin:0 1rem;
}
a{
  color:#0b2242;
  text-decoration:none;
  font-size:13px;
  letter-spacing:0.05em;
  opacity:0.7;
  transition:opacity .2s ease;
}
a:hover{
  opacity:1;
  text-decoration:underline;
}
