@font-face {
  font-family: 'Nohemi';
  src: url('/assets/fonts/Nohemi-Regular.woff') format('woff');
  font-weight: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nohemi', sans-serif;
  background-color: #fff;
  color: #263c87;
  width: 100%;
  height: 100svh;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

h1{
  letter-spacing: 1.25px;
  line-height: 1.25;
  text-align: center;
  max-width: 512px;
}

a{
  color: #263c87;
  text-decoration: none;
  text-underline-offset: 2px;
}

a:hover{
  text-decoration: underline;
}