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

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  background: linear-gradient(
    180deg,
    #94b3e3 0%,
    #b8c9e8 35%,
    #e8ddd6 70%,
    #fdf5f0 100%
  );
}

.title {
  color: #ffffff;
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
  user-select: none;
}
