/*=========================================================================================*/
/*LOADING PAGE*/

#loading {
  width: 100%;
  height: 100vh;
  position: fixed;
  top:0%;
  z-index: 5;
  background-color: black;
  /*background: url("Images/landing_bg.jpg");*/
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  opacity: 1;
  transition: 3s;
}

#welcome {
  color: white;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  /*s*/
  opacity: 1;
}

#button {
  text-decoration: none;
  /*background: black;
  border: none;
  color: white;*/
  font-family: 'Overlock'; 
  font-size: 10pt;
  padding: 10px;
  border-radius: 10pt;
  cursor: pointer;
}

#button:hover {
  background-color: olive;
  border: grey;
}

h2 {
  font-size: 1.5em;
}

h5 {
  font-size: 1em;
  color: grey;
}


/*=========================================================================================*/
/*BACKGROUND*/

/*.landing_page .intro*/ h1 {
  margin-top: 5px;
  font-size: 2em;
  font-family: 'Cinzel Decorative', cursive; /*nice for song headings*/
  /*font-family: 'Lobster Two', cursive;*/ 
 /* font-family: 'Uncial Antiqua', cursive;*/
}

.landing_page .container_bgimg {
  background-image: url("Images/landing_bg6.gif");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: auto;
  margin: 0 auto; 
  height: 100vh;
}

