 .conv
 {
    background-size: cover;
    background-repeat: no-repeat;
    width: 250px;
    height: 250px;
	box-sizing: border-box;
	border-radius: 8px;
	display:flex;
	justify-content:center;
	align-items:center;
 }
 .conv:hover
 {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    filter: grayscale(60%);
 }
 .conv ul
 {
    height: 90%;
    width: 100%;
    list-style-type: none;
    padding: 0;
    margin: 8px 0 0 0;
    text-align: left;
    font-size: 15px;
    opacity: 0;
    transition: all 0.5s ease;
	background-color: rgba(6, 11, 4, 0.7);
    border-radius: 10px;
    padding: 10px;
	color: white;
	font-family:'Monstserrat',sans-serif;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
 }
 .conv:hover ul
 {
	opacity:1;
 }