*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: #FDF7F0;
  color: #006458;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  text-align: center;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
}

.logo-wrap {
  margin-bottom: 2.5rem;
}

.logo {
  height: 56px;
  width: auto;
}

h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.25rem, 4vw, 1.625rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
}
