/*
 * Base structure
 */

body {
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}

.cover-container {
  background-image: url("../img/OliveLifeSiteLandingPage_BG_V2_1500x1125px.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover; 
  /* Cover : Scales the image (while preserving its ratio) to the smallest possible size to fill the container */
  height: 100%;
  overflow: hidden;
  padding-bottom:10%;
}

@media (max-width: 576px) {
  /* dealing with the mobile version of the background image */
  .cover-container {
  background-image: url("../img/OliveLifeSiteLandingPage_BG_400x800px.jpg");
  background-repeat: no-repeat; */
  background-position: center top; */
  background-size: cover; 
  /* Cover : Scales the image (while preserving its ratio) to the smallest possible size to fill the container */
  }
}