body,html{
    width: 100%;
    margin: 0;
    background-color: white;
}


.container {
    width: 90%;
    margin: auto;
    padding: 20px;
    /* align-items: center;
    justify-content: center; */
}

.section {
    margin: 40px 0;
    text-align: center;
    font-style: italic;
}

.section h1 {
    color: #5a3e1b;
    font-size: 2rem;
    margin-bottom: 10px;
}

.section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: auto;
    color: black;
}
    
/* Apostolate Section */
#apostolate .ministries {
    display: grid;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
    background-color:rgba(169, 117, 91, 0.473);
}

.ministry {
    flex: 1 1 200px;
    background-color: white;
    margin: 15px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.ministry img{
    width: 400px;
    height: 400px;
}

.ministry:hover {
    transform: translateY(-5px);
}

.ministry i {
    font-size: 40px;
    color: #8b5e34;
    margin-bottom: 15px;
}

.ministry h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #5a3e1b;
}

.ministry p {
    font-size: 1rem;
    color: black;
    /* background-color: #d9d7fe; */
}
#rights {
  background-color: brown;      /* Background color for footer */
  color: white;                 /* Text color */
  text-align: center;           /* Center the text */
  padding: 10px 0;              /* Space above and below text */
  font-size: 14px;              /* Font size */
  font-family: Arial, sans-serif; /* Font style */
}

/* Optional: Keep footer at the bottom even with little content */
footer {
  position: relative;
  bottom: 0;
  width: 100%;
}

