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

html,
body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

.wrapper {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background: #fff;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 640px;
  gap: 16px;
}

.logo {
  height: auto;
  width: auto;
  max-width: min(144px, 40vw);
}

.illustration {
  height: auto;
  width: auto;
  max-width: min(302px, 90vw);
}

.title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.75;
  color: #1e2327;
  text-align: center;
}

.body {
  width: 100%;
}

.paragraph {
  font-size: 14px;
  line-height: 1.5;
  color: #1e2327;
  text-align: center;
  margin-bottom: 0;
}

.paragraph + .paragraph {
  margin-top: 0;
}

.paragraph strong {
  font-weight: 700;
}
