html, body {
  height: 100vh;
}


body {
  margin: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  background-image: url("img/lg-background.png"); 
  background-repeat: no-repeat;               
  background-size: cover;                    
  background-attachment: fixed;
  overscroll-behavior: none;  
}

/* tune these to your real nav/footer heights */
:root {
  --nav-h: 1px;
  --footer-h: 1px;
}

.navig {
    align-items: center;
    max-height: 100px;
    background-color: #4457f0;
    margin: auto;
}

/* the main page area between fixed header + footer */
.page {
  min-width: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
}

/* let the video region take remaining space */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}


a, p, h5, h6, li, hr, .btn {
    font-family: "darkmode-on", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #f8f9fa;
}

h1 {
  font-family: Arial, Helvetica, sans-serif;
}

.h1 {
  font-size: 4em;
  font-weight: 900;
}

.text-outline {
  text-shadow:
    1px 1px 0 #96969c,
    -1px -1px 0#96969c,
    1px -1px 0 #96969c,
    -1px 1px 0 #96969c;
}

.vertical-center {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}


.right-align {
    text-align: right;
    float: right;
    max-width: 700px;
}

footer {
  background-color: #4457f0;
  color: white;
  width: 100%;
  opacity: 85%;
}

 /* ---------------------- */

@media (max-width: 1200px) {
    
.h1 {
        padding-bottom: 1em;
        padding-left: 1.5em;
    }


}


/* ---------------------- */



@media (max-width: 992px) {   

.h1 {
        font-size: 2.75em;
        padding-bottom: 1em;
        padding-top: 1.25em;
        padding-left: .5em;
        padding-right: .5em;
    }
   
}



/* ---------------------- */

@media (max-width: 768px) {   

      html, body {
        height: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

body {
    margin: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    background-image: url("img/sm2-background.png");
    background-color: #4457f0;
    overscroll-behavior: none;      
}

.h1 {
        font-size: 2.5em;
        font-weight: bold;
        padding-bottom: 1em;
        padding-top: 1.25em;
        padding-left: .5em;
        padding-right: .5em;
    }
    
}

/* ---------------------- */

 @media (max-width: 575px) { 

  body {
    margin: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    background-image: url("img/sm-background.png"); 
    background-color: #4457f0;
}


    .h1 {
        font-size: 2.5em;
        font-weight: bold;
        padding-bottom: 1em;
        padding-top: .5em;
    }

    .right-align {
        text-align: center;
    }

    .vid {
        display: none;
    }

}