/*------------------------------------------------------*/
/* Home Page */
body {
  color: white;
  background-image: url("../images/bg_home_1.jpg");  
  background-color: grey;  
  background-position: center center; 
  background-repeat: no-repeat; 
  background-attachment: fixed; 
  background-size: cover;   
}

h1 {
  font-weight: bold;
  margin: 0;
} 
h2 {
  font-weight: bold;
  margin: .8rem;
}
h3 {
  font-weight: bold;
  margin: .6rem;
} 

a:link {
  font-weight: bold;
  color: blue;
  text-decoration: none;
}
a:visited {
  color: blue;
}
a:hover {
  color: red;
}
a:active {
  color: red;
}


/* --------------------------------------------
  Banner
*/  
.banner {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
.thisspaceintentionallyleftblank {
  display: flex;
  flex: 2 1 auto;
  position: relative;
}
.banner_left_bg_img {
  position: absolute;
  top: -10px; 
  left: -10px;
  z-index: -1;
}
.thisspaceintentionallyrightblank {
  display: flex;
  flex: 2 1 auto;
  position: relative;
}
.banner_right_bg_img {
  position: absolute;
  top: -30px; 
  right: -35px;
  z-index: -1;
}


.welcomeBox {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 0px 10px 0 10px;
}
.welcomeBoxTextGuest {
  text-shadow: 1px 1px 2px #ddd; 
}
.welcomeBoxTextUser {
  white-space: nowrap;
}
.welcomeBoxLinkBox {
  display: inline-block;
  white-space: nowrap;
}

a.welcomeBoxLinks:link {
  padding: 10px 15px;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  text-shadow: 1px 1px 2px #000;
  border-radius: 5px;
  background: darkblue;
  text-decoration: none;
}
a.welcomeBoxLinks:visited {
  color: #fff;
}
a.welcomeBox:hover {
  color: yellow;
  background: darkblue;
}
a.welcomeBox:active {
  color: red;
  background: darkblue;
}



/*****************************************
  Content
*/
.contentContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.contentBox {
  flex: 1 100%;
  padding: 10px;
  max-width: 600px;
}
.contentBox > h5 {
  font-weight: bold;
  text-shadow: 1px 1px 2px #ddd;
  margin: 5px 0px;
}
.contentBox:nth-child(1) {
  
}
.contentBoxTitle {
  font-weight: bold;
  font-size: 1.25em;  
  line-height: 1em;
  text-shadow: 1px 1px 2px #ddd;
}
.contentBoxText {
  padding-top: .5em;
  line-height: 1.25em;
}


.buyFlashcards {
  padding: 5px 0px 5px 0px;
}

a.buyFlashcards:link {
  font-weight: bold;
  color: red;
  text-decoration: none;
}
a.buyFlashcards:visited {
  color: red;
}
a.buyFlashcards:hover {
  color: red;
}
a.buyFlashcards:active {
  color: red;
}



/*****************************************
  Quotation
*/

.quoteBox {
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
  align-items: left;
  vertical-align: top;
  padding: 10px;
  line-height: 1.25em;
  margin-left: 5%;
  /* max-width: 300px; */
}
.quoteBox > h4 {
  font-weight: bold;
  margin: .6rem;
  text-shadow: none;
  width: 100%;
  text-align: left;
  text-shadow: 1px 1px 1px #666;
}
.quotation {
  align-self: flex-start;
  font-size: 1.1em;
  padding-left: 15px;
  overflow: hidden;
  text-shadow: 1px 1px 1px #666;
}
.author {
  font-size: 1rem;
  font-style: italic;
}

