@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat');
}

:root {
  --bg: #faf9f5;
  --bg-soft: #f5f4f0;
  --ink: #333333;
  --accent: #854658;
  --accent-soft: #9e5f71;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  /* bg color blended over the fabric image so texture shows through faintly */
  background:
    linear-gradient(rgba(250, 249, 245, 0.88), rgba(250, 249, 245, 0.88)),
    url('bio-shetland.jpg') center / cover fixed;
  color: var(--ink);
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

main {
  text-align: center;
  max-width: 32rem;
}

.logo {
  width: 140px;
  height: auto;
  margin-bottom: 2rem;
}

.message {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--accent);
  font-weight: 500;
  margin: 0;
}

.fabric {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 2.5rem auto 0;
  border-radius: 6px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}
