
.container {
    display: flex;
    width: 100%;
    max-width: 1200px; 
    margin-top: 3em;

}

.pic {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: flex-start; 
}

.pic img {
    max-width: 75%;
    height: auto;
}

.content {
    width: 70%;
    margin-right: 2em;
    line-height: 1.6;
    margin-bottom: 1em;
} 

/* caption under drawing in contact page */
.pic figure {
    text-align: center;
    margin: 0;
  }
  
  .pic figcaption {
    font-size: 0.9em;
    font-style: italic;
    color: #444;
    margin: auto;
    text-align: center;
    line-height: 1.5;
    width: 70%;
  }
  
 
  


ul.exhibitions {
    display: block;
    font-size: 1.2em;
    margin-left: 1.6em;
    list-style-type: none;
}


ul.exhibitions li:before {
    content: '\2014';
    position: absolute;
    margin-left: -30px;
  }

@media (max-width: 675px) {



    /* contact page */
    
    .pic figure {
        margin-bottom: 1em;
    }


     .container {
        display: block;
        padding: 0;
    }

    .pic {
        width: 100%;


    }

    ul.exhibitions {
        display: block;
        text-align: left;
    }

    .content {
        width: 100%;
        padding: 0;
    }

    footer {
        padding: 15px;
    } 

}