/* Modern CSS Reset - version 2023-09-18 */
/* https://andy-bell.co.uk/a-more-modern-css-reset/ */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}
/* open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v36-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v36-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
  --color-green-base: rgb(21,135,48);
  --color-red-base: rgb(182,39,43);
  --color-gray-base: rgb(51, 51, 51);
  --color-orange: rgb(246, 165, 97);
  --color-brown: rgb(163, 93, 33);
}

html {
  font-size: 16px;
}

body {
	background: rgb(231, 231, 231);
	color: var(--color-gray-base);
  display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 1.25rem;
	line-height: 1.5;
	margin: 0;
}

.card {
  background: white;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.07), 0 4px 8px rgba(0,0,0,0.07), 0 8px 16px rgba(0,0,0,0.07), 0 16px 32px rgba(0,0,0,0.07), 0 32px 64px rgba(0,0,0,0.07);
  margin: 2rem auto;
  max-width: 800px;
  padding: 2.5rem 1.75rem 1.75rem;
  width: 100%;
}

.site-home .card {
  max-width: 600px;
}

.card-header {
  display: flex;
  justify-content: center;
  margin-block-end: 4rem;
}

.logo {
  height: auto;
  max-width: 340px;
}

.site-home .card-body {
  text-align: center;
}

.card-footer {
  margin-block-start: 4rem;
  text-align: center;
}

.heading-brown {
  color: var(--color-brown);
}

.heading-sub-orange {
  color: var(--color-orange);
}


h1 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

h1, h2, h3, h4, p {
  margin-block: 1rem;
}

a {
  transition: all .3s ease-in-out;
}

a:focus,
a:hover {
  color: var(--color-orange);
  text-decoration: none;
}

.card-footer a {
  margin-inline: .5em;
}

