.clickpic {
	width: 200px;
	height: 200px;
    margin-left: 20px;
    margin-top: 10px;
	float: left;
}

.clickpic img {
	width: inherit;
	height: inherit;
	position: absolute;
}

.info {
	width: inherit;
	height: inherit;
}

.info a {
    background-color: rgba(69, 82, 71, 0);
	margin: 0px;
	opacity: 0;
	transition: opacity 1s, background-color 1s;
	position: absolute;
	display: block;
	color: white;
	width: inherit;
    height: inherit;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    border-left: 20px;
}

.info a:hover {
    background-color: rgba(69, 82, 71, .75);
	opacity: 1;
}