.container .mainImage img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 40%;
    border: 1px solid black;
    border-radius: 5px;
    justify-content: center;
    margin-top: 10px;
}
.container .mainBody {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;

}
.container .mainBody .mainContent {
    margin-top: 40px;
    width: 40%;
    max-width: 40%;
    background-color: lightgray;
    border-radius: 10px;
    border: 1px solid black;
}

.container .mainBody .mainContent .frame {
    width: 100%;
    height: 340px;
    position: relative;
}
.container .mainBody .mainContent img{
    width: 100%;
}
.container .mainBody .mainContent .mainCopyText {
    margin-left: 10px;
    margin-right: 10px;
}


@media only screen and (max-width: 597px) {

    .container .mainImage img {
        max-width: 95%;
    }

    .container .mainBody .mainContent {
        margin-top: 40px;
        width: 95%;
        max-width: 95%;
        background-color: lightgray;
        border-radius: 10px;
        border: 1px solid black;
    }
    .heroHeader .header {
        max-width: 95%;        
    }
    .container .mainBody .mainContent .frame {
        width: 100%;
        height: 220px;
        position: relative;
    }
}