h3 {
    color: rgb(52, 53, 52);
    font-size: 200%;
    margin: 2rem 0 2rem 0;
    text-align: center;
}

p {
    font-size: 120%;
    margin: 0 7rem 2rem 7rem;
    line-height: 1.5;
}


body {
    background-color: whitesmoke;
}

.Container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 6rem 0 4rem 0;

}

.Frame {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #abbbcf65;
    width: 80%;
    padding: 1rem;
    border-radius: 10px;
}

.TextWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.TextWrapper p {
    width: 70%;
    margin: 0 2.5rem 2rem 5rem;
}

.TextWrapper img {
    width: 45%;
    margin: 0 2rem 2rem 0;
}

.SiteFooter {
    /* position: relative; */
    position: fixed;
    bottom: 0;
}

@media (max-width: 1000px) {
    .TextWrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .TextWrapper p {
        margin: 0 0 2rem 0;
    }

    .TextWrapper img {
        width: 66%;
        margin: 0 0 2rem 0;
    }
}

@media (max-width: 700px) {
    p {
        margin: 0 0.0 2rem 0.0;
    }
}

@media (max-width: 530px) {
    p {
        text-align: left;
    }
}