body {
    background: #ffffff;
    color: #000000;
    font-family: 'Didact Gothic', sans-serif;
    text-align: center;
    margin: 0;
    width: 100%;
    letter-spacing: 1px;
}

#content {
    max-width: 880px;
    margin: auto;
}

#header {
    background-image: url("../images/Charity-Header.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #ace5dc;
    font-size: 22px;
    padding: 48px;
    margin: 24px;
}

#header p {
    margin: 0;
}

#hblogo {
    max-width: 360px;
}

b {
    font-weight: 700;
}

.summary {
    font-weight: 700;
    font-size: 18px;
    margin: 24px;
}

.round {
    border-radius: 50%;
}

.child {
    display: block;
    padding: 24px;
}

.child-image {
    width: 50%;
    margin: auto;
}

.child-text {
    width: 100%;
}

.child {
    flex-direction: column;
}

.child:nth-child(even) {
    background-color: #ace5dc;
}

.wrapper {
    display: flex;
    flex-direction: row;
}

.charity {
    margin: 24px;
    width: 33%;
    font-weight: bold;
}

.charity img {
    width: 100%;
    margin-bottom: 8px;
}

@media only screen and (min-width: 768px) {
    #header {
        font-size: 36px;
        margin: 48px;
        padding: 80px 48px;
    }

    .summary {
        margin: 48px;
    }

    .child:nth-child(odd) {
        flex-direction: row;
        text-align: right;
    }

    .child:nth-child(even) {
        flex-direction: row-reverse;
        text-align: left;
    }

    .child {
        display: flex;
        padding: 12px 48px;
        align-items: center;
    }

    .child-image {
        width: 33%;
    }
    
    .child:nth-child(odd) .child-image {
        margin-right: 36px; 
    }

    .child:nth-child(even) .child-image {
        margin-left: 36px;
    }

    .child-text {
        width: 66%;
    }

    .charity {
        margin: 48px;
    }
}


