html, body {
    font-family: 'Times New Roman', sans-serif;
    display: flex;
    flex-direction: column;
    margin: 0px;
    overflow-x: hidden;
}

ul, li {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    max-width: 750px;
}

a, a:link, a:visited, a:hover {
    text-decoration: none;
    color: inherit;
}

.header {
    position: sticky;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: #FFFFFF;
    background-color: #1f2937;
    flex: 0 0 100px;
    gap: 50px;
    padding: 0px 200px;
    top: 0;
    z-index: 99;
}

    .header .nameplate {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 25px;
    }

        .nameplate .seal {
            width: 80px;
        }

        .nameplate .name {
            display: flex;
            flex-direction: column;
        }

            .name .main {
                font-size: 36px;
                font-weight: 700;
            }

            .name .sub {
                font-size: 24px;
                font-weight: 500;
            }

    .header .links {
        display: flex;
        flex-direction: row;
        list-style: none;
        color: #FFFFFF;
        font-size: 24px;
        font-weight: 500;
        gap: 25px;
        margin: 0;
    }

.page {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 1000px;
}

.imgwrapper {
    display: flex;
    overflow: hidden;
    position: relative;
}

.imgwrapper img {
    width: 100vw;
    margin-top: -12.5%;
    margin-bottom: -12.5%;
}

/* .example {
    width: 100vw;
    height: 1000px;
    display: flex;
    justify-content: space-between;
    background-image: url("images/BP-ExteriorRender-1.png");
    background-size: contain;
} */

.overlay {
    position: absolute;
    width: 10%;
    height: 100%;
    backdrop-filter: blur(5px);
}

.darken {
    background-color: black;
    width: 100%;
    height: 100%;
    opacity: 25%;
}

.title {
    color: black;
    font-size: 60px;
    margin-top: 100px;
}

.quote {
    display: flex;
    flex-direction: column;
    color: black;
    font-size: 48px;
    margin-top: 100px;
    gap: 10px;
    width: 1050px;
}

.content {
    display: flex;
    font-style: italic;
    font-size: 48px;
    font-weight: 500;
    margin-right: auto;
}

.author {
    display: flex;
    font-style: italic;
    font-size: 24px;
    font-weight: 500;
    margin-left: auto;
}

.info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: bisque;
    gap: 50px;
    margin-top: 100px;
    padding: 50px;
    max-width: 1150px;
}

.info .section {
    background-color: bisque;
    flex-basis: 300px;
    flex-grow: 1;
}

.section .main {
    font-size: 48px;
    margin: 0 auto;
}

.section .sub {
    font-size: 24px;
}

.image {
    width: 800px;
    margin-top: 50px;

}

.donate {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    color: white;
    background-color: darkred;
    font-size: 24px;
    font-weight: 700;
    border-radius: 10px;
    flex: 0 0 auto;
    height: 50px;
    width: 150px;
    padding: 10px 30px;
    margin-top: 25px;
}

.text {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 24px;
    gap: 25px;
    margin-top: 25px;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background-color: #1f2937;
    flex: 0 0 150px;
    gap: 50px;
    margin-top: 100px;
    padding: 0px 200px;
    bottom: 0;
    font-size: 24px;
}

.seperator {
    width: 5px;
    background-color: sienna;
}

.nowrap {
   white-space: nowrap;
}

.keepspace {
    white-space: pre;
}

.left {
    left: 0;
}

.right {
    right: 0;
}