

.div_rectangle{
	float: left;
	width: 300px;
    height: 245px;
    
    margin: 5px;
    position: relative;
}

.div_rectangle div{
	border: solid #29d650 1px; border-radius: 20px; overflow: hidden;
}

.img{
	width: 300px;
	height: 500px;
}

.image_rectangle1{
	display: block;
}

.image_rectangle2{
	display: none;
}

.div_rectangle:hover .image_rectangle1{
	display: none; 
}
.div_rectangle:hover .image_rectangle2{
	display: block; 
}
.div_rectangle div:hover{
	border: solid #ff9800 1px;
	transition:all 0.5s ease-in-out;
}

.div_rectangle:hover h3{
	color: #ff9800;
	font-size: 22px;
	transition:all 0.5s ease-in-out;
}

div div h3{
	margin-top: 5px;
	color: #ffe400;
	text-align: center;
	font-size: xx-large;
	background-color: rgba(12, 12, 12, 0.35);
}

.titre_rect{
	margin-top: 5px;
	color: #ffe400;
	text-align: center;
	font-size: large;
	background-color: rgba(0, 0, 0, 0.0);;
}
