html {
    width: 100%;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 16rem;
    padding-right: 16rem;
}


@media (max-width: 768px) {
    body {
        padding-left: 0;
        padding-right: 0;
    }
    .contentBody {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.contentBody > ul, ol {
    list-style-type: disc;
    padding-left: 40px;
}

h2, h3, h4, h5, h6 {
    margin-right: 4px;
    margin-top: 8px;
    margin-bottom: 4px;
}

h6 {
    font-size: 1rem;
}

h5 {
    font-size: 1.2rem;
}

h4 {
    font-size: 1.4rem;
}


h1 {
    margin: 8px;
}

.contentBody > a {
    color: #096df2;
    text-decoration: underline;
}

.contentBody > strong > a {
    color: #096df2;
    text-decoration: underline;
}

.contentBody > span > a {
    color: #096df2;
    text-decoration: underline;
}

.contentBody > h3 > a {
    color: #096df2;
    text-decoration: underline;
}

.contentBody > .moreBtn {
    color: #fff;
    text-decoration: none;
}

.contentBody a strong {
    color: #096df2;
    text-decoration: underline;
}

.contentBody u a {
    color: #096df2;
    text-decoration: underline;
}

.contentBody a:not(.app-btn) {
    color: #096df2;
    text-decoration: underline;
}

.marginHere {
    margin-bottom: 6rem;
}

/* WordPress Core
-------------------------------------------------------------- */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #eee;
    clip: auto !important;
    clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

 /* ---------------------- My added Wordpress equivalents -------------------------- */

img.size-full {
    max-width: 100%;
    /* Make sure the image doesn't exceed its container */
    height: auto;
    /* Maintain the image's aspect ratio */
    /* Add any other styles you want to apply */
}


btn-primary {
    background: #000;
    color: #fff;
    transition: cubic-bezier(0.165, 0.84, 0.44, 1);
}

img {
    width: 30vw;
    height: auto; 
    max-width: 100%; 
    max-height: 100%; 
    padding: 2rem;
}

 @media only screen and (max-width: 786px) {
    img {
        width: 100%;
        height: auto;
    }
}

p {
    margin-top: 4px;
    margin-bottom: 4px;
}

button:not(.dropbtn):not(.newsBtn) {
    display: inline-block;
    text-align: center;
    border-radius: 6.1875rem;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1rem;
    background: var(--button-primary-background);
    color: var(--button-primary-textColor);
    transition: box-shadow 0.5s var(--transition-easeOutSin);
    padding: 1rem;
}

br {
    display: block;
    content: "";
    margin-top: 4px;
}
