.social {
    color: azure;
    width: 100%;
    margin-block: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-left: 2%;
    padding-right: 30px;
}

.social > div {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
}

.church {
    max-width: 800px;
    margin: 0 auto;
}

img {
    width: 100%;
    object-fit: cover;
}

.info {
    color: azure;
    padding: 1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

h1, h2 {
    margin-block: 1rem;
}

.schedule {
    background-color: purple;
    color: azure;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    gap: 0.5rem;
}

.times {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule > p {
    text-align: justify;
    width: 100%;
}

.schedule-day {
    text-decoration: underline;
    margin-bottom: 0.5rem;
    text-align: justify;
    width: 100%;
}

@media (min-width: 768px) {
    .times {
        flex-direction: unset;
        justify-content: center;
        width: 100%;
    }
}