#content-background {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 0 auto;
}
.content-post {
    width: 90%;
    margin: 10px auto;
    border: 5px solid #6d4f36;
    border-radius: 50px;
    text-align: center;
}
.content-image img {
    width: 100%;
    border-radius: 50px;
}
.content-info {
    height: 100%;
    margin: 10px 5%;
    border-radius: 100px;
    display: inline-block;
    vertical-align: middle;
}
.content-title, .content-link {
    width: 100%;
    height: 20%;
}
.content-title p {
    text-align: center;
    color: #6d4f36;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5em;
    line-height: 1.5em;
}
.content-description {
    width: 100%;
    height: 50%;
}
.content-description p{
    text-align: justify;
    color: #6d4f36;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1em;
}
.content-link p {
    height: 20%;
    text-align: center;
    color: #6d4f36;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1em;
}
a.content-link-style:link, a.content-link-style:visited {
    color: #6d4f36;
    background-color: bisque;
}
a.content-link-style:hover, a.content-link-style:active {
    color: bisque;
    background-color: #6d4f36;
}
@media screen and (min-width: 1300px) {
    #content-background {
        width: 1250px;
    }
    .content-image {
        width: 40%;
        display: inline-block;
        vertical-align: middle;
    }
    .content-info {
        width: 45%;
    }
}
@media screen and (max-width: 1300px){
    #content-background {
        width: 100%;
    }
    .content-image {
        width: 90%;
        display: block;
        margin: 10px auto;
    }
    .content-info {
        width: 90%;
    }
}
@media screen and (max-device-width: 480px){
    #content-background {
        width: 100%;
    }
    .content-image {
        width: 90%;
        display: block;
        margin: 10px auto;
    }
    .content-info {
        width: 90%;
    }
}