* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 2em;
   
}

h2 {
  
  margin: 15px;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

p {
    font-size: 1.1em;
    line-height: 1.5;
    margin-bottom: 10px;
}

.highlight {
    font-weight: bold;
    color: #e74c3c;
}

.quote {
    font-style: italic;
}

  
  
  .header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
  }
  
  .video-container {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
  }

  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .contact-container {
    text-align: center;
        margin: 50px 0;
  }
  
  .contact-container h2 {
    margin-bottom: 10px;
  }
  
  .contact-container ul {
    list-style: none;
  }
  
  .contact-container li {
    margin-bottom: 5px;
  }

  .location {
    display: flex;
        justify-content: center;
        align-items: center;
        height: 50vh;
  }

  .location iframe {
    width: 90%;
    height: 90%;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }

  .church-image {
    display: flex;
    justify-content: center;
    margin: 50px;
  }
  
  .church-image img {
    max-width: 75%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  }
  
  .message{
    background-color: #f0f0f0;
     color: #333;
     padding: 20px;
     width: 100%;
     max-width: 700px; /* Adjust this value based on your project's requirement */
     margin: auto; /* Optional: Center the container */
  }
  
  