/***********************/
/* Andy Bell 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 */
* {
  margin: 0;
  padding: 2px;
  font: inherit;
}

/* 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;
}

html,
body {
  height: 100%;
}

/* Set core body defaults */
body {
  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.
svg {
  max-width: 100%;
  display: block;
}

/* 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;
}





body {
  background-color: lightgray;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1rem;
}

a.link {
    text-decoration: underline;
    /* color: #9f2a01; */
   color: chocolate;
}

a.link:hover {
        color: #2E8B57;
        text-decoration: none;
}

.crLogo {
   width: 100px;
   height: 100px;
  /*float: left;*/
}

.headerContainer {
  display: grid;
  align-items: center;
}


.logo_div {
  display: grid;
  align-content: center;
  grid-area: 1 / 1 / span 2;
  width: fit-content;
  /*background-color: green;*/
 }

.headline_div {
   grid-area: 1 / 2 / 2 / 3;
}

.subhead_div {
  grid-area: 2 / 2 / 3 / 3;
  padding-left: 2rem;
}


#doggies {
   width: 600px;
   height: 600px;
}

.siteHeadline {
  color: black;
  /*font-family: serif;*/
  font-weight: 600;
  font-size: 1.8rem;
  display: grid;
  justify-content: center;
}

.siteSubHeadline {
  color: blue;
  font-weight: 700;
  font-size: 1.2rem;
}

sup {
  font-size: .6rem;
}

.intro {
  color: black;
  font-weight: 600;
  padding: 7px;
  padding-top: 2rem;
  margin-left: 5px;
}


.siteHistory {
  /*padding-top: 15px;*/
  /*float: right;*/
  padding: 7px;
  margin-left: 5px;
}

.siteHistoryComment {
  line-height: .9;
  margin: 0px;
  text-indent: 6px;
  color: #384379;
  font-style: italic;
}

.main-footer {
  /* background-color: rgba(0,0,0,.6); */
  background-image: url("assets/br_c.png");


  background-position: center;
  background-blend-mode: multiply;
  background-size: cover;
  max-width: 900px;

  padding-top: 40px;
  padding-bottom: 40px;
}

.footerHeadline {
  color: white;
  /*font-family: serif;*/
  font-weight: 600;
  font-size: 1.2rem;
  display: grid;
  justify-content: center;
}

.footerSubHeadline {
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

