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

html,
body {
  height: 100%;
  margin: 0;
}

body {
  background: #fbf9f9;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 24px;
}

.logo {
  width: 40px;
  height: 40px;
  display: block;
}

h1 {
  margin: 0;
  font-family: "Merriweather", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 32px;
  text-align: center;
}
