@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bitter:ital@1&display=swap');

*{
  box-sizing: border-box;
  margin: 0;
}

body{
  overflow-x: hidden;
}

li, h1,h2,h3,p,a{
  font-family: 'Bebas Neue', cursive;
}

li{
  list-style: none;
  display: inline-block;
  padding: 0 30px;
  font-size: 40px;
}

h1{
  font-size: 40px;
}

h2{
  padding: 0 30px;
}

a:hover{
  cursor: pointer;
}

/* Navagation Bar */

.navbar{
  background-color: #ffff;
}

.nav-img{
  height: auto;
  width: 150px;
  margin: 10px 25px;
}

.navbar-nav{
 margin-left: auto;
}

.navbar-nav a{
  color: #ffff00;
  padding-bottom: 10px;
}


/* Carousel Elements */
.carousel{
  margin-top: 100px;
}
.carousel-item{
  height: 550px;
}


.carousel-item div{
  display: flex;
  padding: 50px 50px;
  flex-direction: column;
  align-items: center;
}

.first-slide h1,p {
  color: antiquewhite;
}

.first-slide h1 {
  font-size: 55px;
}

.first-slide p {
  padding: 20px 10px;
  font-size: 50px;
}


.first-slide, .second-slide{
  padding: 25px 0;
}

.first-slide{
 background-color: #000067;
}

.second-slide{
  background-color: #ffff00;
}

.third-slide{
  background-image: url(img/prayer.png);
  background-repeat: no-repeat;
  background-size: cover;
  background: rgba(0, 0, 128, 0.5);
  
}

.second-slide h1, .daily-verse, .reference{
  color: #000067;
  font-family: 'Bitter', serif;
  font-size: 45px;
  font-weight: bold;
  margin: 10px 0;
  padding: 5px 10px;
}

.slide-img{
  height: 500px;
  width: 600px;
  border-radius: 50px;
  background: #000080;
  box-shadow:  20px 20px 60px #00006d,
              -20px -20px 60px;
}

/* Second Container */
.second-container{
  width: 100%;
  margin-top: 10rem;
}

.second-container h1{
  color: #000067;
  text-align: center;
  font-size: 55px;
}

.weekly-event-container{
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  margin-top: 20px;
}

.event-box{
  width: 350px;
  height: 350px;
  border-radius: 20px ;
  margin: 15px;
}

.pop-up-modal{
  position: absolute;
  left: 31%;
  height: auto;
  width: 500px;
  z-index: 1;
  background: rgba( 255, 255, 255, 0.8 );
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  backdrop-filter: blur( 4px );
  -webkit-backdrop-filter: blur( 4px );
  border-radius: 10px;
  border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.pop-list{
  text-align: center;
  color: #000067;
}

.pop-list h2, li{
  color: #000067;
}

.closeBtn{
  height: 25px;
  width: auto;
  font-size: 12px;
  text-align: center;
  background-color: red;
  color: antiquewhite;
  margin: 10px 10px;
  border-radius: 25px;
}

#fca, #weekday{
  background-repeat: no-repeat;
  background-size: cover;
}
#fca{
  background-image: url('img/fca.png');
  background-position: 60%;
}

#weekday{
  background-image: url('img/dover.jpg');
  background-position: 30%;
}

.event-box:hover{
  transform: scale(1.2);
  transition: ease-in-out 1s;
}

/* Footer Elements */

footer{
  left: 0;
  bottom: 0;
  margin-top: 15rem;
  width: 100%;
  height: auto;
  background-color: #000067;
}

footer h1, h2{
  text-align: center;
  padding-top: 30px;
  color: #ffff00;
  font-size: 45px;

}
.contact-container{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;

}

.contact-box-one, .contact-box-two{
  height: auto;
  width: auto;
  background: rgba( 255, 255, 255, 0.15 );
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  backdrop-filter: blur( 4px );
  -webkit-backdrop-filter: blur( 4px );
  border-radius: 10px;
  border: 1px solid rgba( 255, 255, 255, 0.18 );
  margin: 0 10px;
  padding: 10px 10px;
}

.contact-box-two div{
  display: flex;
  flex-direction: row;
  padding: 5px 10px;
  width: 100%;
}


.contact-box-one p, .contact-box-two p{
  font-size: 25px;
  color: #ffff00;
  text-align: center;
}

.contact-box-two a{
  text-decoration: none;
  margin: 0 10px;
  font-size: 25px;
}

.social-img{
  height: 25px;
  width: 25px;
}

/* Media Queries */

/* Smaller Smart Phones */
@media (min-width: 0px) and (max-width: 480px){

  body{
    overflow-x: hidden;
  }

  /* Carousel Elements */
  .carousel{
    margin-top: 50px;
  }
  .carousel-item{
    height: 500px;
  }

  .carousel-item div{
    padding: 40px 40px;
  }
  

  .first-slide h1 {
    font-size: 30px;
    padding: 10px 0;
    text-align: center;
  }

  .first-slide p{
    font-size: 25px;
  }


  .second-slide h1, .daily-verse, .reference{
    color: #000067;
    font-family: 'Bitter', serif;
    font-size: 30px;
    font-weight: bolder;
    margin: 5px 0;
    padding: 10px 0px;
    text-align: center;
  }

  .slide-img{
    height: 500px;
    width: auto;
    background: #000080;
  }

  .nav-img{
    height: auto;
    width: 100px;
    margin: 10px 25px;
  }

  .weekly-event-container{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
  }

  .contact-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
  
  }

  /* Second Container */

  .second-container{
    width: 100%;
    margin-top: 5rem;
  }

  .weekly-event-container{
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .event-box{
    width: 250px;
    height: 250px;
    border-radius: 20px ;
    margin: 15px;
  }

  .pop-up-modal{
    position: absolute;
    left: 10%;
    width: 350px;
  }

  .pop-up-modal h1{
    font-size: 55px;
  }

  .pop-list{
    font-size: 50px;
    font-weight: bolder;
  }

  .pop-list h2, li{
    color: #000067;
  }

  .pop-list h2{
    font-size: 45px;
  }

  .pop-list li{
    font-size: 40px;
  }

  .closeBtn{
    height: 45px;
    width: auto;
    font-size: 20px;
  }

  /* Footer Elements */

  footer{
    left: 0;
    bottom: 0;
    margin-top: 5rem;
    width: 100%;
    height: auto;
    background-color: #000067;
  }

  .contact-box-one, .contact-box-two{
    margin: 10px 10px;
    padding: 10px 10px;
  }

  .contact-box-one p, .contact-box-two p, .contact-box-two a{
    font-size: 35px;
  }
  
  .social-img{
    height: 35px;
    width: 35px;
  }
}

/* Larger Smart Phones and Tablets */
@media  (min-width:481px) and (max-width:1101px){

  body{
    overflow-x: hidden;
  }

  .carousel{
    margin-top: 50px;
  }
  .carousel-item{
    height: 500px;
  }

  .carousel-item div{
    padding: 40px 40px;
  }
  

  .first-slide h1 {
    font-size: 45px;
    padding: 10px 0;
    text-align: center;
  }

  .first-slide p{
    font-size: 35px;
  }


  .second-slide h1, .daily-verse, .reference{
    color: #000067;
    font-family: 'Bitter', serif;
    font-size: 35px;
    font-weight: bolder;
    margin: 5px 0;
    padding: 10px 0px;
    text-align: center;
  }

  .slide-img{
    height: 500px;
    width: auto;
    background: #000080;
  }

  .nav-img{
    height: auto;
    width: 100px;
    margin: 10px 25px;
  }


  /* Second Container */

  .second-container{
    width: 100%;
    margin-top: 5rem;
  }

  .second-container h1{
    font-size: 75px;
  }

  .weekly-event-container{
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .weekly-event-container div{
    width: 450px;
    height: 450px;
    border-radius: 20px ;
    margin: 15px;
  }


  .pop-up-modal{
    position: absolute;
    left: 15%;
    width: 700px;
  }

  .pop-up-modal h1{
    font-size: 90px;
  }

  .pop-list{
    font-size: 50px;
    font-weight: bolder;
  }

  .pop-list h2, li{
    color: #000067;
  }

  .pop-list h2{
    font-size: 80px;
  }

  .pop-list li{
    font-size: 60px;
  }

  .closeBtn{
    height: 60px;
    width: auto;
    font-size: 25px;
  }
  /* Footer Elements */

  footer{
    left: 0;
    bottom: 0;
    margin-top: 5rem;
    width: 100%;
    height: auto;
    background-color: #000067;
  }

  footer h1{
    font-size: 75px;
  }

  .contact-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
  
  }

  .contact-box-one, .contact-box-two{
    margin: 10px 10px;
    padding: 10px 10px;
  }

  .contact-box-one h2, .contact-box-two h2 {
    font-size: 60px;
  }
  
  .contact-box-one p, .contact-box-two  p, .contact-box-two a{
    font-size: 55px;
  }
  
  .social-img{
    height: 55px;
    width: 55px;
  }
}

