    :root {
        --primary-color: #112c08;
        --accent-color: #ffd900;
        --background-color: hsl(44, 28%, 15%);
        --contrast-color: #ff334e;

        --landing-background: url(/images/1.jpg);

        --primary-font: sans-serif;
        --secondary-font: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    }

    .hidden {
        display: none;
    }

    body {
        font-family: sans-serif;
        background-color: var(--background-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    .dark-shadow-outline {
        border: 2px solid var(--primary-color);
        box-shadow: var(--primary-color) 0px 0px 20px;
    }

    .dark-text {
        color: var(--primary-color);
    }

    hr {
        border: none;
        border-top: 3px solid var(--accent-color);
        width: 80px;
        max-width: 400px;
        margin: 8px 0 16px;
    }

    button,
    a {
        padding: 10px 16px;
        cursor: pointer;
        margin-top: 20px;
        margin-right: 20px;
        width: fit-content;
    }

    /* Fundraiser section */

    .fundraiser-div-container {
        background-image: var(--landing-background);
        background-size: cover;
        width: 100%;
        height: 100dvh;
        height: max-content;
        min-height: 100dvh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .fundraiser-div {
        padding: 24px;
        max-width: 800px;
        margin: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: white
    }

    .fundraiser-div h1 {
        font-family: var(--secondary-font);
        font-weight: 700;
        font-size: 56px;
        margin: 0px;
        color: var(--accent-color);
        justify-self: center;
    }

    .fundraiser-div p {
        font-size: 20px;
        font-weight: 500;
    }

    .fundraiser-div h3 {
        font-size: 24px;
        margin: 8px;
    }

    .bar {
        position: relative;
        height: 36px;
        background: #eee;
        border-radius: 10px;
        overflow: hidden;
        width: 100%;
        max-width: 400px;
        margin: 8px;
    }

    .fill {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        background-color: var(--contrast-color);
        width: 0%;
    }

    .pledged {
        background-color: var(--accent-color);
        z-index: 1;
    }

    .raised {
        background-color: var(--contrast-color);
        z-index: 2;
    }

    .fundraiser-div h2 {
        font-family: var(--secondary-font);
        font-size: 24px;
        margin: 4px;
    }

    .btn {
        display: inline-block;
        padding: 10px 12px;
        background: var(--accent-color);
        text-decoration: none;
        border-radius: 10px;
        font-size: 20px;
        font-weight: bold;
        transition: 0.2s;
    }

    .btn:hover {
        box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.9);
        transform: translateY(-2px);
    }

    #contribute-btn {
        background: var(--contrast-color);
    }

    /* Donors section */

    .donors-div-container {
        padding-bottom: 24px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 90dvw;
    }

    #donors {
        margin: 8px 8px 40px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 94dvw;
    }

    .donors-div-container h2 {
        font-size: 48px;
        margin-bottom: 10px;
        color: white;
    }

    .donor-card {
        flex: 0;

        background-color: white;
        padding: 20px 20px 0;
        margin: 8px;
        border-radius: 10px;
        width: 80dvw;
        min-width: 300px;
        box-shadow: 0 4px 8px 0 var(--primary-color);
        color: var(--primary-color);
        font-size: large;
        white-space: nowrap;
        cursor: pointer;
        transition: 0.2s;

    }

    .donor-card h3 {
        margin: 0;
        font-size: x-large;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .donor-card h4 {
        margin: 8px 0;
        font-size: medium;
        font-weight: 500;
    }

    .donor-card p {
        margin: 16px 0;
        color: var(--primary-color);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: inherit;
    }

    .donor-card:hover {
        box-shadow: 0 4px 16px 0 var(--primary-color);
        transform: translateY(-2px);
        white-space: wrap;
    }

    .paid {
        background-color: var(--accent-color);
    }

    .footer {
        background-color: #3b2d0f9d;
        background-image: url(/images/2.jpg);
        background-position: bottom;
        background-blend-mode: overlay;
        background-size: cover;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footer span {
        display: inline-block;
        padding: 16px;
        color: white;
        text-align: center;
        font-size: x-small;

    }