/* =============================
   Base
   ============================= */

html {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;

  background-color: #fffaf0; /* pale cream / off-white */
  color: #222; /* neutral dark grey text color for contrast */
}


/* =============================
   Layout
   ============================= */

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.25rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.block {
  text-align: center;
}


/* =============================
   Headings
   ============================= */

h1,
h2 {
  color: #0274BE;
  margin: 0;
  text-align: center;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
}

h2 {
  font-size: 1.5rem;
  font-weight: 700;
}


/* Headings as links */

h1 a,
h2 a {
  color: inherit;
  text-decoration: none;
}

h1 a:hover,
h2 a:hover {
  text-decoration: underline;
}


/* =============================
   Images
   ============================= */

.block img {
  display: block;
  max-width: 512px;
  width: 100%;
  height: auto;

  margin: 0 auto 1.5rem auto;
}
