<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* https://piccalil.li/blog/a-modern-css-reset  */
/* Box sizing rules */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
background-color:var(--color-back);
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  height:auto;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
   
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}



/*---------------------------------------
  CUSTOM JSB ( VARIABLES )             
-----------------------------------------*/
:root { 
    --color-back:#000000;
    --color-back2:#898b8f;
      --text-color:#ffffff;
      --text-color2:#000000;
      --accent-color:#d9d9d9;
      --button-color:#4f4e4c;
      
      --border-radius-large: 50px;
      --border-radius-medium: 20px;
      --border-radius-small: 10px;
      
}
*{
  margin: 0;
  padding: 0;
}

main {
    flex:1;
    overflow:scroll;
}

/*Responsive Font h1*/
h1 {
/*font-size: 2rem;*/
font-size: clamp(2rem, 0.7179487179487178rem + 5.47008547008547vw, 4rem);
}


/*navbar*/
.logo {
    max-width: 5em;
  height: auto;
  
}


nav{

    height: 7em;
    background-color:var(--color-back);
    display:flex;
    justify-content:flex-end;
    align-items:center;
}
.links-container{
    height:100%;
    width:100%;
    display:flex;
    flex-direction:row;
    align-items:center;
}
nav a{
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
}  

nav a:hover{
  background-color: var(--accent-color);
}
nav .home-link{
  margin-right: auto;
}
nav svg{
  fill: var(--text-color);
}
#sidebar-active{
  display: none;
}
.open-sidebar-button, .close-sidebar-button{
  display: none;
}
@media(max-width: 450px){
  .links-container{
    flex-direction: column;
    align-items: flex-start;

    position: fixed;
    top: 0;
    right: -100%;
    z-index: 10;
    width: 300px;

    background-color: var(--color-back);
    box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
    transition: 0.75s ease-out;
    
    
  }
  nav a{
    box-sizing: border-box;
    height: auto;
    width: 100%;
    padding: 20px 30px;
    justify-content: flex-start;
  }
  .open-sidebar-button, .close-sidebar-button{
    padding: 20px;
    display: block;
  }
  #sidebar-active:checked ~ .links-container{
    right: 0;
  }
  #sidebar-active:checked ~ #overlay{
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
  }
}

/*---------------------------------------
    section-overlay           
  -----------------------------------------*/
  .section-padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  

  
  .section-overlay {
    /*background-color: black;*/
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    opacity: 0.35;
  }
  
  .section-overlay + .container {
    position: relative;
  }
  
    .customImage {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;

    /* The image used */
    background-image: linear-gradient(rgba(255, 255, 255, 0.15), rgba(100,0,0, 0.8)),url("https://livingwordrevivalcenter.com/images/2000687698.jpg");
  
    /* Set a specific height */
    min-height: 500px; 
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  
    .hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    height: calc(100vh - 51px);
  }
  
  .hero-section  {
    color: var(--text-color);
    text-transform: uppercase;
  }
  
  .hero-section .section-overlay {
    z-index: 2;
    opacity: 0.45;
  }
  
  .hero-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    color: var(--text-color);
  }
  
  .hero-section .container .row {
    height: 100%;

  }
  
  
  /*about image*/
  
    .about-image {
    /*border-radius: var(--border-radius-large);*/
    /*display: block;*/
    width: 10em;
    /*align-items:center;*/
    /*padding-top:15px;*/
    /*padding-bottom:15px;*/
    /*text-align:center;*/
  }
  
  
  .button {
      background-color: var(--button-color);
      border: none;
      color: white;
      padding: 15px 32px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 16px;
}

.cardButton {
    /*padding-top:10px;*/
    background-color:purple;
    height:80px;
}

  .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top:2em;
    width: 10em;
}

.centerImag {
    padding-top:2em;
        margin-left: auto;
    margin-right: auto;
}
/*center image for blog*/
  .center2 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top:2em;
    /*width: 50%;*/
    width: 25em;
}
  
  /*card like intro*/
 
.cardLike {
    margin:1em;
    padding:2em;
    background-color:green;
    /*width:15em;*/
      display: flex;
  flex-wrap: wrap;

  text-align:justify;
}
  
  /*new flex */
.flex-container {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content:space-around;
  
}

.intro {
    background-color:var(--color-back);
}

.vision {
    /*background-color:var(--color-back);*/
    color:var(--text-color);
    text-align:justify;
    padding:2em;
}


.sectionTitle {
    background-color:var(--color-back);
    color:var(--text-color);
    text-align:center;
    /*padding:2em;*/
}

.wednesday {
    background-color:var(--color-back);
    color:var(--text-color);
    text-align:center;
    padding:4em;
}
.wednesday2 {
    /*background-color:var(--color-back);*/
    color:var(--text-color);
    /*text-align:center;*/
    /*padding:2em;*/
}

.introPages {
    background-color:var(--color-back);
    color:var(--text-color);
    padding-left:3em;
    padding-right:3em;
    padding-top:2em;
}

.imgPages {
    text-align:center;
    align-items:center;
}


  /*new flex card column*/
  
.flex-container2 {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  text-align: center;
  justify-content:space-around;

}


.cardButton2 {
    /*padding-top:10px;*/
    /*background-color:purple;*/
    height:100px;
    align-content:center;

}


.cardLike2 {
    /*margin:1em;*/
    /*padding:2em;*/
    /*background-color:green;*/
    display: flex;
    height:120px;
    width:25em;
    flex-wrap: wrap;
    text-align:justify;
    align-items:center;
}


.h2intro {
    padding-top:1em;
    padding-bottom:1em;
    color:var(--text-color);
}
.ppp {
    padding:2em;
}

.ppp2 {
    flex-wrap: wrap;
    padding:2em;
    font-size:1.5em;
    color:var(--text-color);
    text-align:center;
}

.fff {
    /*background-color: #f2f1ed;*/
    background-color:rgba(193, 190, 192, 0.41);
    border-style: solid;
    border-radius: 9px;
    color:var(--text-color2);

}

.flec-container2 {
    padding-bottom:3em;
}


/*Middle About Section*/

.flex-container3 {
  display: flex;
  flex-direction: row;
  /*font-size: 30px;*/
  text-align: center;
}

.flex-item-left {
  /*background-color: #f1f1f1;*/
  background-color:var(--color-back);
  padding: 10px;
  /*flex: 50%;*/
}

.flex-item-right {
  background-color: dodgerblue;
  padding: 10px;
  /*flex: 50%;*/
  /*flex-grow:1;*/
  
}

/* Responsive layout - makes a one column-layout instead of two-column layout */
@media (max-width: 800px) {
  .flex-container3 {
    flex-direction: column;
  }
}

.blog {
    background-color:var(--color-back);
    color:var(--text-color);
}

.cardLeft {
  background-color: #f1f1f1;
  padding: 10px;
  flex: 50%;
}

.cardRight {
  background-color: dodgerblue;
  padding: 10px;
  flex: 50%;
}


/*wip*/
.flex-containerZZ {
  display: flex;
  flex-direction: row;
  /*font-size: 30px;*/
  text-align: center;
background-color: var(--color-back2);
align-items:center;
        border-style: solid;
    border-radius: 9px;
    color:var(--text-color);
}

.flex-item-leftZZ {
width:20em;
  /*padding: 10px;*/
  /*flex: 50%;*/
 margin:20px;
}

.center2ZZ {
    height:200px;
    /*width:200px;*/
}

.flex-item-rightZZ {
  background-color: green;
  color:var(--text-color);
  /*padding: 10px;*/
  /*flex: 50%;*/
  flex:1;
  /*align-content:end;*/
  /*text-align:justify;*/
  /*width:40em;*/
}

/* Responsive layout - makes a one column-layout instead of two-column layout */
@media (max-width: 800px) {
  .flex-containerZZ {
    flex-direction: column;
  }
}


.fC1 {
    display: flex;
    flex-direction: row;
    text-align: center;
    background-color: var(--color-back2);
    align-items:center;
    border-style: solid;
    border-radius: 9px;
    color:var(--text-color);
}


.fLeft1 {

}

.fRight1 {
  background-color: dodgerblue;
  color:var(--text-color);
  /*padding: 10px;*/
  /*flex: 50%;*/
  flex:1;
align-self: stretch;
}

/* Responsive layout - makes a one column-layout instead of two-column layout */
@media (max-width: 800px) {
  .fC1 {
    flex-direction: column;
  }
}


.dB2 {
    padding-top:10px;
    padding-bottom:10px;

    margin:10px;
    background-color:var(--color-back);
}

.cal {
   
    align-content:center;
    background-color:red;
    height:800px;
}

.fCal {
    display:flex;
    justify-content:center;
    align-items:center;

}

iframe {
    /*width:1000px;*/
    /*height:600px;*/
}


.apple {
    height:100px;
    background-color:white;
    
}

.aboutImage {
    height:400px;
}

.fat {
    height:100px;
    background-color:green;
}


/* To Top of Page */

.scrollUp {
  position: fixed;
  bottom: 100px;
  right: 50px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: gray;
  color: #fff;
  pointer-events: none;
  transition: 0.5s;
  opacity: 0;
  /* display: none; */
}

.scrollUp:hover {
  background: antiquewhite;
  color: rgb(172, 13, 13);
}

.scrollUp.active {
  bottom: 32px;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(-55px);
}

.containerZan {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.responsive-iframe {
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
 
  width: 100%;
  height: 1000px;
  border: none;
}



.containerQ {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.responsive-iframeQ {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.events, h4 {
    text-align:center;
    color:var(--text-color);
    background-color:var(--color-back);
}

.backIcon {
    /*text-decoration:none;*/
    background-color:var(--color-back);
    /*color:var(--text-color);*/
    padding-top:2em;
    padding-left:2em;
}

.DDD {
    text-decoration:none;
    background-color:var(--color-back);
    color:var(--text-color);
}

/*hardcode pages*/
.flex-pages {

  display:flex;
  background-color:var(--color-back);
  color:var(--text-color);
  padding: 10px;
  
}

.centerPages {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top:2em;
    padding-bottom:2em;
    width: 10em;
}


.introImg {
    height:250px;
    /*background-color:white;*/
}



.containerGallery {
    display:flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    text-align:center;
    /*margin: 40px 20px 0 20px;*/
    /*background-color:var(--color-back);*/
}




.containerGallery .box {
    display:flex;
    flex-direction: row;
    justify-content: space-between;
}


  .Xcenter {
    /*display: block;*/
    /*margin-left: auto;*/
    /*margin-right: auto;*/
    /*padding-top:2em;*/
    padding:2px 2px 2px 2px;
    /*width: 10em;*/
    
}

.containerGallery .box .dream {
    display:flex;
    flex-direction: column;
    /*width:33%;*/
    width: 15em;
}


.containerGallery .box .dream img{
    width:100%;
}


@media only screen and (max-width: 769px) {

    .containerGallery .box {
        flex-direction: column;

    }

    .containerGallery .box .dream {
    width:100%;

    }

}


body {
  /*overflow-y: hidden; */
  overflow-x: hidden; /* Hide horizontal scrollbar */
}
</pre></body></html>