.content {
    width: 50%;
}

.content p {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.content h1, .content h2 {
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.content h2 {
    font-style: italic;
    color: rgb(66, 66, 66);
}

.blogPicture {
    float: right;
    width: 50%;
    min-width: 180px;
    margin-left: 15px;
    margin-bottom: 15px;
    background-color: rgba(0,0,0,0.1);
    border-style: ridge;
    border-width: 2px;
    border-color: grey;
}

.blogPicture p {
    font-style: italic;
    color: rgb(66, 66, 66);
    padding: 0.25rem;
    margin: 0px;
    font-size: 0.85rem;
    text-align: center;
}

picture img{
    width: 100%;
    border-style: ridge;
    border-width: 0px;
    border-bottom-width: 2px;
    border-color: grey;
}

@media screen and (max-width: 768px) {
    .content {
        width: 80%;
    }
    .blogPicture {
        float: none;
        margin: auto;
        width: 80%;
        margin-left: 0px;
    }
}