/****************
Start at a known state 
Reset all of the layout parameters 
********************/
*,
*::before,
*::after {
  box-sizing: border-box;
}
body,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  font-size: 100%;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  background: #eeeeee;
}
/***....    OKAY...  START AT THE TOP   **************************/
/* banner_bg is to create an area at the top to hide the 
words as we scroll under and past the banner itself*/
.banner_bg {
  width: 100%;
  height: 2em;
  background-color: #eeeeee;
  position: fixed;
}

.my_banner {
  width: 90%;
  margin: 0 5%;
  max-width: 1200px;
  margin-top: 1em;
  position: fixed;
}
.my_grid {
  display: grid;
  background: gray;
  grid-template-columns: minmax(100px, 12%) auto minmax(100px, 12%);
  grid-template-rows: auto;
  grid-template-areas: " left-flag header right-flag";
  background: #4772ff;
  border-radius: 10px;
  box-shadow: 10px 10px 5px rgba(140, 140, 140, 0.9);
}
.left_flag img,
.right_flag img {
  width: 100%;
  height: auto;
}

.left_flag {
  grid-area: left-flag;
}

.my_header {
  grid-area: header;
  text-align: center;
  margin: auto;
  font-size: 2.75em;
  color: white;
}

.right_flag {
  grid-area: right-flag;
}

/***********************
Verses
***********************/
.main_content {
  background: white;
  width: 84%;
  margin: 0 8%;
  max-width: 1200px;
  margin-top: 20vh;
  border-radius: 10px;
  margin-bottom: 5em;
}

.God_bless {
  display: flex;
  font-size: 2.5em;
  font-weight: 600;
  color: blue;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}
.verse_card {
  margin-left: 5%;
  margin-right: 5%;
}
.verse_header {
  color: red;
  font-size: 1.75em;
  font-weight: 600;
}

.verse_content {
  font-size: 1.5em;
  font-weight: 600;
}

.verse_seperator {
  width: 100%;
  height: 0.75em;
  margin-bottom: 2em;
}

/***********************
Links
***********************/
.link_area {
  margin-left: 2em;
}
.link_header {
  color: blue;
  font-size: 2em;
  font-weight: 800;
}
a {
  font-size: 1.5em;
  display: inline-block;
  margin: 0;
  height: 1.5em;
  margin-bottom: 1em;
  margin-left: 1.75em;
}
/***********************
Bottom Verse and footer
***********************/

.bottom_verse p {
  text-align: center;
  margin-top: 0.5em;
  color: white;
  font-size: 0.8em;
  font-weight: 600;
}

.bottom_verse {
  height: 2em;
  width: 100%;
  background-color: #0044aa;
  position: fixed;
  bottom: 1.5em;
}
.my_footer {
  margin: 0;
  height: 1.5em;
  width: 100%;
  background-color: #222222;
  position: fixed;
  left: 0px;
  bottom: 0px;
}

.my_footer button:hover {
  cursor: text;
}

.my_footer button {
  margin: 0;
  padding: 0;
  margin-right: 0.2em;
  background-color: #222222;
  color: white;
  border: 0;
  font-size: 0.9em;
  font-weight: 100;
}

.my_footer p {
  margin: auto;
  text-align: center;
  color: white;
  font-size: 0.8em;
  font-weight: 100;
}
