/* Basic reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #333333;
}

/* Full-height, vertically and horizontally centred layout */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Simple card to hold logo + blurb */
.card {
  text-align: center;
  max-width: 520px;
}

/* Logo sizing */
.logo {
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 0 auto 24px auto;
  display: block;
}

/* Blurb styling */
.blurb {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555555;
}

