.droneschoix{
    display: flex;
    flex-direction: row;
    align-items: center;
    background-image:rgba(0,0,0,0.3);
    background-size: cover; /* Ensures the image covers the whole div */
    background-position: center; /* Centers the image */
}

.droneschoix .element {
    display:flex;
    flex-direction:column;
    width: 20%;
	height: 230px;
    margin: 5vh auto; /* Margin to space elements */
    background-color: rgb(103, 101, 101);
    text-align: center; /* To center text inside */
	align-items: center;
    border: 1px solid rgba(256,256,256,0.2);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.8);
}

.droneschoix .element h2 {
    color: orange;
    font-size: 18px; /* You can adjust font size as needed */
}

.droneschoix .element img {
    width: 300px; /* Adjusts the size of the image */
    height: auto; /* Maintains aspect ratio */
    margin-top: 10px;
    margin-bottom: 10px;
}
.background {
    width: 100%; /* Adjusts the size of the image */
    height: 50vh; /* Maintains aspect ratio */
    margin-top: 0px;
    margin-bottom: 10px;
}
.droneschoix .element:hover{
	transform : scale(1.2);
}
@media screen and (max-width:768px) {
	.droneschoix{
		flex-direction: column;
	}
}