#header {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('/res/2023_back.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    user-select: none;
    box-sizing: border-box;
}

#header>div {
    backdrop-filter: blur(3px);
    padding: 100px 0 50px 0;
}

#header h1 {
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 80pt;
    text-shadow: black 3pt 1pt;
}

#header h2 {
    color: white;
    text-align: center;
    font-weight: bolder;
    font-size: 35pt;
    text-shadow: black 1pt 1pt;
}

#header a.btn {
    border-radius: 15pt;
    font-size: 18pt;
    text-shadow: black 1px 1px;
    margin-top: 25pt;
    font-weight: 500;
    border-width: 2pt;
}

@media (max-width: 768px) {
    #header h1 {
        font-size: 40pt;
    }

    #header h2 {
        font-size: 20pt;
    }

    #header>div {
        padding: 50px 0 30px 0;
    }

    #header a.btn {
        font-size: 13pt;
    }
}

#description p {
    font-size: xx-large;
    font-weight: 600;
}

#description h2 {
    font-size: 3.5rem;
    text-decoration: overline red solid;
    text-decoration-thickness: 15pt;
}

@media (max-width: 768px) {
    #description p {
        font-size: larger;
    }

    #description h2 {
        font-size: 2rem;
        text-decoration-thickness: 7pt;
    }
}

#photos {

    display: flex;
    flex-direction: row;

}

#photo-viewer {
    height: min(fit-content, 80vh);
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow-x: hidden;
}

#photo-viewer img {
    max-width: 100vw;
    max-height: 100%;
    flex-wrap: wrap;
}

#photos button {
    align-self: center;
    position: absolute;
    mix-blend-mode: difference;
    transition: none;
    color: white;
    padding: 0;
}

#photos button:hover {
    box-shadow: 0 0 10pt 5pt white;
}

.prev-button {
    left: 5pt;
}

.next-button {
    right: 5pt;
}

#worship h2 {
    font-size: 40pt;
    text-align: center;
    margin-bottom: 20pt;
}

@media (max-width: 768px) {
    #worship h2 {
        font-size: 20pt;
    }
}

#testimony {
    height: 70vh;
    padding: 50px 15pt;
    text-align: justify;
    background: url(res/testimony-bg-small.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#testimony p {
    font-size: xx-large;
    font-family: "Edu SA Hand", cursive;
    font-weight: 450;
    text-shadow: 1px 2px darkslategray;
    margin-bottom: 40pt !important;
}

#testimony .btn {
    font-size: large;
    font-weight: 550;
}

@media (max-width: 992px) {
    #testimony p {
        font-size: large;
    }
}

@media (min-width: 992px) {
    #testimony {
    }

}

@media (max-width: 1200px) {
    #testimony p {
        font-size: x-large;
    }
}

#videos {
    padding-top: 50px;
    padding-bottom: 50px;

}

#videos iframe {
    aspect-ratio: 16/9;
    width: 100%;
    max-height: 85vh;
    display: block;
    margin: 0 auto;
}

@media (min-width: 992px) {
    #videos iframe {
        width: 75%;
    }
}

@media (min-width: 1200px) {
    #videos iframe {
        width: 60%;
    }
}

#venue p {
    font-size: x-large;
}

.table {
    --bs-table-bg: transparent;
    --bs-table-color: white;
    --bs-border-width: 0;
    font-size: x-large;
    width: fit-content;
}



@media (max-width: 992px) {
    .table {
        font-size: large;
    }
}

.table thead td {
    font-weight: bold;
}

#venue img {
    aspect-ratio: 16/9;
    object-fit: cover;
}