body {
  font-size: 1em; /* Default font size */
  margin: 0;
  padding: 0;
}

.container {
  width: 90%; /* Takes up 90% of the screen width */
  margin: 0 auto; /* Centers the container */
}

.header {
  padding: 2vw; /* Padding adjusts based on viewport width */
}

img {
  max-width: 100%; /* Ensures images scale down to fit the container */
  height: auto; /* Maintains aspect ratio */
}

  }
  .logo {
    display: flex;
    justify-content: center; /* Centers the image horizontally */
    align-items: center; /* Centers the image vertically */
    height: ; /* Optional: Makes the container full height */
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 1%;
  }
  
  .lgo {
    width: 80px;
    animation: rotation 2s infinite linear; /* Apply rotation animation to the image */
    border-radius: 50%; /* Ensures the image is circular */
    box-shadow: 0 0 30px 10px rgba(255, 165, 0, 0.8), 0 0 80px 20px rgba(255, 69, 0, 0.5); /* Glowing sunset effect */
  }
  
  @keyframes rotation {
    from {
      transform: rotateY(0deg); /* Start rotation from 0 degrees */
    }
    to {
      transform: rotateY(360deg); /* Complete rotation at 360 degrees */
    }
  }
  
  .navbar {/*Nav bar settings*/
    overflow: hidden;
    background-color: rgb(122, 210, 250);
    padding-left: 20px;
    
    
  }
  
  .navbar a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  .dropdown .dropbtn {
    font-size: 16px;  
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
  
  .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: blue;
    color:white;
    border: 3px solid palevioletred;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(169, 169, 240);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgb(141, 207, 238);
    color: white;
    border: 3px solid palevioletred;
    z-index: 1;
  }
  
  .dropdown-content a {
    float: none;
    color:white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: #627aff;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }


  h1 {
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 5px;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8), 
        0 0 20px rgba(255, 255, 255, 0.7), 
        0 0 30px rgba(255, 255, 255, 0.6), 
        0 0 40px rgba(0, 255, 255, 0.5), 
        0 0 50px rgba(0, 255, 255, 0.4), 
        0 0 60px rgba(0, 255, 255, 0.3),
        0 0 70px rgba(0, 255, 255, 0.2);

    animation: glowing 1.5s ease-in-out infinite, blinking 1s step-start infinite;
    position: relative;
}

@keyframes glowing {
    0% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.7), 0 0 30px rgba(255, 255, 255, 0.6), 0 0 40px rgba(0, 255, 255, 0.5), 0 0 50px rgba(0, 255, 255, 0.4), 0 0 60px rgba(0, 255, 255, 0.3), 0 0 70px rgba(0, 255, 255, 0.2); }
    50% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.7), 0 0 40px rgba(255, 255, 255, 0.6), 0 0 50px rgba(0, 255, 255, 0.5), 0 0 60px rgba(0, 255, 255, 0.4), 0 0 70px rgba(0, 255, 255, 0.3), 0 0 80px rgba(0, 255, 255, 0.2); }
    100% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.7), 0 0 30px rgba(255, 255, 255, 0.6), 0 0 40px rgba(0, 255, 255, 0.5), 0 0 50px rgba(0, 255, 255, 0.4), 0 0 60px rgba(0, 255, 255, 0.3), 0 0 70px rgba(0, 255, 255, 0.2); }
}

@keyframes blinking {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
/*slideshow css*/

* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}
.footer{
  background-image: url('../pictures/footer.jpg');
  height: 20%;
  width: 100%;
  background-repeat: repeat;

}
h2,h3{
  color: rgb(127, 118, 247);
}
.frames{
  display: flex;
  margin-right: 10%;
  margin-left: 10%;
}


.frame1,.frame2{
  border:3px solid rgb(0, 183, 255);
 margin-right: 5%;
 margin-bottom: 15px;
 padding:10px;
 border-bottom-right-radius:50px ;
 border-bottom-left-radius:50px ;
}
.frame1 {
  border: 3px solid rgb(25, 0, 255); /* Example border color */
  margin-right: 5%;
  margin-bottom: 15px;
  padding: 10px;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;

  /* Initial off-screen position */
  position: relative;
  animation: flyInFromBottom 6s ease-out, bounce 6s 6s ease-in-out infinite;
}

@keyframes flyInFromBottom {
  0% {
    transform: translateY(100%) rotate(90deg); /* Start below the screen, rotating anticlockwise */
  }
  100% {
    transform: translateY(0) rotate(0deg); /* End at normal position, no rotation */
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0); /* No bounce */
  }
  50% {
    transform: translateY(-10px); /* Bounce up */
  }
}



.frame2 {
  border: 3px solid rgb(0, 183, 255);
  margin-right: 5%;
  margin-bottom: 15px;
  padding: 10px;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;

  /* Initial off-screen position */
  position: relative;
  animation: flyInFromTop 6s ease-out, bounce 6s 6s ease-in-out infinite;
}

@keyframes flyInFromTop {
  0% {
    transform: translateY(-100%) rotate(-90deg); /* Start off-screen, rotating clockwise */
  }
  100% {
    transform: translateY(0) rotate(0deg); /* End at normal position, no rotation */
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0); /* No bounce */
  }
  50% {
    transform: translateY(-10px); /* Bounce up */
  }
}


.verse{
  color:blue;


}
.verseline{
  color: rgb(4, 70, 70);
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: large;
}

  /* Glowing and blinking text effect for the address */
.address {
  font-size: 1.2em;
  font-family: Arial, sans-serif;
  color: #fff; /* White text color */
  text-shadow: 
      0 0 5px #00ffff,   /* Light blue glow */
      0 0 10px #00ffff, 
      0 0 15px #00ffff,
      0 0 20px #00ffff, 
      0 0 25px #00ffff, 
      0 0 30px #00ffff; /* Light blue glow with increasing intensity */
  animation: blink 1.5s infinite alternate; /* Blinking animation */
}

/* Blinking effect */
@keyframes blink {
  0% {
      text-shadow: 
          0 0 5px #00ffff,
          0 0 10px #00ffff,
          0 0 15px #00ffff,
          0 0 20px #00ffff,
          0 0 25px #00ffff,
          0 0 30px #00ffff;
  }
  100% {
      text-shadow: 
          0 0 5px #00ffff,
          0 0 10px #00ffff,
          0 0 15px #00ffff,
          0 0 20px #00ffff,
          0 0 25px #00ffff,
          0 0 30px #00ffff,
          0 0 40px #00ffff, /* Adding more intensity to create a "blink" effect */
          0 0 50px #00ffff;
  }
}
#phone, #email, #post{
  display: flex;
}


/* Image with floating animation */
.phone1 {
  width: 150px;
  height: 150px;
  opacity: 0; /* Start with the image invisible */
  position: relative;
  animation: floatIn 1s ease-in-out forwards;
  animation-delay: 1s; /* Delay the animation by 2 seconds */
}

/* Keyframes for the floating animation */
@keyframes floatIn {
  0% {
      transform: translateY(100px); /* Start from 100px below */
      opacity: 0; /* Make it invisible */
  }
  100% {
      transform: translateY(0); /* End at its original position */
      opacity: 1; /* Make it fully visible */
  }
}

  /* Image with floating animation */
.email1 {
  width: 150px;
  height: 150px;
  opacity: 0; /* Start with the image invisible */
  position: relative;
  animation: floatIn 2s ease-in-out forwards;
  animation-delay: 2s; /* Delay the animation by 2 seconds */
}

/* Keyframes for the floating animation */
@keyframes floatIn {
  0% {
      transform: translateY(100px); /* Start from 100px below */
      opacity: 0; /* Make it invisible */
  }
  100% {
      transform: translateY(0); /* End at its original position */
      opacity: 1; /* Make it fully visible */
  }
}
/* Image with floating animation */
.posta1 {
  width: 150px;
  height: 150px;
  opacity: 0; /* Start with the image invisible */
  position: relative;
  animation: floatIn 2s ease-in-out forwards;
  animation-delay: 3s; /* Delay the animation by 2 seconds */
}

/* Keyframes for the floating animation */
@keyframes floatIn {
  0% {
      transform: translateY(100px); /* Start from 100px below */
      opacity: 0; /* Make it invisible */
  }
  100% {
      transform: translateY(0); /* End at its original position */
      opacity: 1; /* Make it fully visible */
  }
}
.add{
  color: blue;
  font-style: oblique;
  font-weight: 200;
  font-size: large;
  
 
  
}

.objective {
    position: relative; /* This ensures the pseudo-element is positioned relative to this container */
    border: 3px solid blue;
    margin-left: 10%;
    margin-right: 21%;
    margin-bottom: 2%;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 2px;
    background-color: rgba(255, 255, 255, 0); /* Optional, to ensure the background color is transparent */
  }
  
  .objective::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../pictures/sky2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.2; /* Set the opacity of the background image */
    border-radius: 30px; /* Ensure the border-radius applies to the background as well */
    z-index: -1; /* Place the overlay behind the content */
  }
  
 


li{
  color:rgb(21, 22, 21);
  font-size: medium;
  font-weight: 300;
}
.bquote {
  position: relative; /* Ensure the pseudo-element is positioned relative to the container */
  border: 3px solid rgb(0, 89, 255);
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  text-align: center;
  color: #0c2ef0;
  font-size: larger;
  margin-left: 25%;
  margin-right: 35%;
  height: 400px; /* Set height to your preferred value */
}

.bquote::before {
  content: ""; /* Needed to create the pseudo-element */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../pictures/tithe1.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.3; /* Set opacity of the background image (0 = fully transparent, 1 = fully opaque) */
  z-index: -1; /* Ensure the image stays behind the content */
  border-radius: 50px; /* Apply the border-radius from the parent */
}
.bankdetails{
  justify-content: center;

  display:flex;
  margin-bottom: 5px;
  color: #627aff;
  font-size: larger;
}
.paybill{
  justify-content: center;
  display:flex;
  margin-bottom: 10px;
  color: #627aff;
  font-size: larger;
  border-bottom: 2%;
}
/*paymment flying in and bouncing*/



/* Animation for the image */
.paybill img {
  width: 100px; /* Adjust the size of the image */
  height: auto;
  animation: flyInRotateBounce 10s ease-out forwards; /* Apply the animation */
}

/* Keyframes for flying in, rotating, and bouncing */
@keyframes flyInRotateBounce {
  0% {
      transform: translateY(-200px) rotate(-720deg); /* Start off-screen and rotate */
      opacity: 0;
  }
  50% {
      transform: translateY(30px) rotate(0deg); /* Move to target position and reset rotation */
  }
  70% {
      transform: translateY(-10px) rotate(10deg); /* Bounce slightly and rotate */
  }
  100% {
      transform: translateY(0) rotate(0deg); /* Final position with no rotation */
      opacity: 1; /* Fully visible */
  }
}
.bankdetails img{
  width: 100px; /* Adjust the size of the image */
  height: auto;
  animation: flyInRotateBounce 15s ease-out forwards; /* Apply the animation */
}

/* Keyframes for flying in, rotating, and bouncing */
@keyframes flyInRotateBounce {
  0% {
      transform: translateY(-200px) rotate(-720deg); /* Start off-screen and rotate */
      opacity: 0;
  }
  50% {
      transform: translateY(30px) rotate(0deg); /* Move to target position and reset rotation */
  }
  70% {
      transform: translateY(-10px) rotate(10deg); /* Bounce slightly and rotate */
  }
  100% {
      transform: translateY(0) rotate(0deg); /* Final position with no rotation */
      opacity: 1; /* Fully visible */
  }
}
.ed{
  color: #041fb4;
  text-align: center;
  font-size: larger;
}
.tre{
  color: rgb(94, 151, 7);
  text-align: center;
  font-size: larger;
}
.education {
  border: 3px solid rgb(94, 151, 7);
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  margin-left: 5%;
  margin-right: 10%;
  margin-bottom: 20px;

  /* Initial off-screen position and rotation */
  position: relative;
  animation: flyInFromRight 6s ease-out, bounce 4s 4s ease-in-out infinite;
}

@keyframes flyInFromRight {
  0% {
    transform: translateX(100%) rotate(90deg); /* Start off-screen to the right and rotated */
  }
  100% {
    transform: translateX(0) rotate(0deg); /* End at normal position, no rotation */
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0); /* No bounce */
  }
  50% {
    transform: translateY(-10px); /* Bounce up */
  }
}


.trees {
  border: 3px solid blue;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  margin-left: 5%;
  margin-right: 10%;
  margin-bottom: 20px;

  /* Initial off-screen position and rotation */
  position: relative;
  animation: flyInFromLeft 6s ease-out, bounce 4s 4s ease-in-out infinite;
}

@keyframes flyInFromLeft {
  0% {
    transform: translateX(-100%) rotate(-90deg); /* Start off-screen to the left and rotated clockwise */
  }
  100% {
    transform: translateX(0) rotate(0deg); /* End at normal position, no rotation */
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0); /* No bounce */
  }
  50% {
    transform: translateY(-10px); /* Bounce up */
  }
}

.community{
  display: flex;
}
.youthpara, .womenpara, worshippara{
  color: blue;
  font-size: larger;
  font-weight: 200;
  margin-right: 10%;
  margin-left: 10%;
}
.youthverse, .womenverse, .worshipverse{
  border: 3px solid blue;
  color: #6f769c;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  text-align: center;
  margin-right: 20%;
  margin-left: 20%;
  margin-bottom: 10px;
  
}
.youth, .women, .worship{
  justify-content: center;
  margin-left: 10%;
  margin-right: 10%;
}
.youthphoto, .womenphoto, worshipphoto {
  height: 4%;
  width: 100%;
  margin-bottom: 20px;
  margin-left: 15%;
  position: relative;
  animation: flyInRotateBounce 6s ease-out forwards;
  justify-content: center;
}

/* Keyframes for flying in, rotating, and bouncing */
@keyframes flyInRotateBounce {
  0% {
    transform: translateX(-100%) rotate(0deg); /* Start off-screen to the left and no rotation */
    opacity: 0;
  }
  50% {
    transform: translateX(10%) rotate(180deg); /* Rotate halfway and move partially to the right */
    opacity: 1;
  }
  100% {
    transform: translateX(0) rotate(360deg); /* Final position with full rotation */
    opacity: 1;
  }
}

/* Bounce effect */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px); /* Move up slightly */
  }
  50% {
    transform: translateY(0); /* Move back to the normal position */
  }
  70% {
    transform: translateY(-5px); /* Slight upward movement */
  }
  100% {
    transform: translateY(0); /* Final position */
  }
}

/* Apply the bounce effect after the fly-in and rotation */
.youthphoto, .womenphoto, .worshipphoto {
  animation: flyInRotateBounce 6s ease-out forwards, bounce 6s ease-out 6s forwards;
}
.youthp, .womenp, .worshipp {
      height: 500px;  /* Adjust the height as needed */
      width: auto;    /* Maintain the aspect ratio */

}
table {
  width: 80%;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
}

th, td {
  padding: 12px 20px;
  text-align: center;
  border: 1px solid #ddd;
}

th {
  background-color: #4CAF50;
  color: white;
  font-size: 18px;
}

td {
  font-size: 16px;
  color: #333;
  background-color: #f9f9f9;
}

tr:nth-child(even) td {
  background-color: #f2f2f2;
}

tr:hover td {
  background-color: #5970f0;
  color: white;
}

caption {
  font-size: 24px;
  font-weight: bold;
  padding: 10px;
  color: #4CAF50;
  text-align: center;
}
.verse2{
  color: blue;
  border: 3px solid blue;
  border-radius: 50px;
  text-align: center;
}








 





