div.links * {
    margin: 0;
    padding: 0;
}

div.links{
    text-align: center;
	margin-top: 10px;
}

div.links dl {
    display: inline-block;
    margin: 5px;
}

div.links img {
    width: 120px;
    max-width:100%;
    height: auto;
    border: solid 5px #988;
    border-radius: 50%;
    transition-duration: 0.3s;
    background-color: #fff;
}

div.links a:hover img {
    transform: rotate(360deg);
}

div.links dd {
    width: 210px;
    max-width:100%;
    text-align: center;
}

@media screen and (max-width: 500px) {
    div.links img {
        
    }

    div.links dd {
        
    }
}