I would like to center my image slightly above the center of the page while having the text centered directly below it.
HTML
<div class="center">
            <img src="aboutImages/jay.jpeg" id="art">
            <span class="description">caption</span>
        </div>
CSS
div.center{
    display: inline-block;
    text-align: center;
    vertical-align: top;
}
div img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    height: 320px;
    width: 250px;
    margin-top: 200px;
}
.description{
    display: block;
    
}
 
     
     
    