@font-face {
  font-family: "OOTheran";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("public/fonts/OOTheran-Light.woff2") format("woff2"),
       url("public/fonts/OOTheran-Light.woff") format("woff");
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: "OOTheran", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(0.75rem, 2.5vw, 0.9rem);
  line-height: 1.5;
  color: #000;
  background-color: #fff;
}

p::selection {
  background-color: blue;
  color: #fff;
}

main {
  position: absolute;
  width: 100%;
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}

.message {
  margin: 0 0 0.75rem;
  max-width: 80rem;
}

.message:last-of-type {
  margin-bottom: 0;
}

a {
  color: blue;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus {
  outline: 1px solid currentColor;
  outline-offset: 1px;
}

footer {
  position: absolute;
  display: flex;
  justify-content: center;
  padding: 2rem 1.5rem;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;

}

.lockup {
  display: block;
  max-width: min(250px, 60vw);
  height: auto;
}

