@media all and (min-width: 768px), screen {
    body div.contact-me-container {
        display: flex;
        justify-content: space-between;
    }
    body div.contact-me-container img,
    body div.workshop img {
        border: 2px solid black;
        -moz-box-shadow: 0 0 20px 5px #000;
        -webkit-box-shadow: 0 0 20px #000;
        -moz-border-radius: 30px;
        -webkit-border-radius: 30px;
    }
    body div.contact-me-container div.steve {
        padding-top: 5rem;
    }
    body div.contact-me-container div.steve img {
        width: 286px;
        height: 286px;
    }
    body div.contact-me-container div.steve p {
        font-size: 1.5rem;
        font-weight: bold;
        margin-left: 2rem;
        text-align: left;
    }
    body div.workshop {
        display: flex;
        justify-content: space-evenly;
        margin-top: 5rem;
    }
    body div.workshop div.address {
        font-size: 1.5rem;
        font-weight: bold;
        margin: 5rem 0 0 2rem;
    }
}
@media all and (max-width: 620px) {
    body div.contact-me-container,
    body div.workshop {
        flex-direction: column;
    }
    body div.contact-me-container div.steve {
        text-align: center;
    }
}