@media all and (min-width: 768px), screen {
    body main img {
        border: 2px solid black;
        -moz-box-shadow: 0 0 20px 5px #000;
        -webkit-box-shadow: 0 0 20px 5px #000;
        -moz-border-radius: 30px;
        -webkit-border-radius: 30px;
        margin: 0 10px 20px 0;
    }
    body main a:hover img {
        border-color: #1979c3;
        -moz-box-shadow: 0 0 20px 5px #1979c3;
        -webkit-box-shadow: 0 0 20px 5px #1979c3;
    }
    body main img.logo-image {
        width: 350px;
        float: left;
    }
    body main section {
        clear: both;
        padding-left: 30px;
    }
    body main section h2 {
        font-size: 4rem;
        font-style: italic;
        text-decoration: underline;
        margin-bottom: 20px;
    }
    body main section h2::first-letter {
        font-size: 5.5rem;
        text-decoration: none;
    }

    section.testimonials p {
        margin: 20px 0;
    }
    section.testimonials img.testimonial-image {
        margin: 20px;
    }
}

@media only screen and (max-width: 640px) {
    section.testimonials img.testimonial-image {
        margin: 20px 0;
    }
}
