body, html {
    height: 100%;
  }
  
  .caption {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    color: #000;
  }
  
  .caption span.border {
    background-color: #111;
    color: #0e0d0c;
    padding: 18px;
    font-size: 25px;
    font-weight: bold;
    
    letter-spacing: 10px;
   
  }
  .parallax {
    /* The image used */
    background-image: url('../img/img_parallax.png');
  
    /* Full height height: 100%; */
     
   /* min-height: 100%;*/
    min-height: 600px;
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  
    position: relative;
    opacity: 0.90;
  
  
  }
  
  #paraText{
    /*background-color:transparent;*/
    font-size:25px;
    color: #11110f;
    background-color: #E9E900;
    border-radius: 8PX;
  }
  
  /* Turn off parallax scrolling for tablets and phones. Increase the pixels if needed */
  @media only screen and (max-device-width: 1024px) {
    .parallax {
      background-attachment: scroll;
    }
  }