body {
   background: linear-gradient(to top right, #E0F2FD, #FFFFFF);

	padding: 0;
}

.container {
	text-align: -webkit-center;
	max-width: 600px;
	margin: 0 auto;
	padding: 20px;
}

.logo {
	max-width:30%;
}

h1 {
	font-size: 2em;
	margin-top: 0;
	margin-bottom: 30px;
}

.image-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.img_ville {
	max-width: 300px;
	height: 200px;
	border: 1px solid #ddd;
	border-radius: 5px;
	transition: transform 0.3s ease;
	border-color: darkslategray;
}

.btn {
	display: block;
	margin-top: 10px;
	padding: 10px 20px;
	color: white;
	font-size: 1.2em;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn_lr {
	background-color: #f4ce0f;
}

.btn_lr:hover {
	background-color: #d9b70d;
}

.btn_tourcoing {
	background-color: #4caf50;
}

.btn_tourcoing:hover {
	background-color: #3e8e41;
}

.img_ville:hover {
	transform: scale(1.1);
}

/* Styles pour les écrans de moins de 600px de large */
@media screen and (max-width: 600px) {
    .container {
        padding: 10px;
    }

    .logo {
        max-width: 50%; /* Augmenter pour les petits écrans */
    }

    h1 {
        font-size: 1.5em; /* Taille de police plus petite */
    }

    .img_ville {
        max-width: 100%; /* Pleine largeur dans les petits écrans */
        height: auto; /* Garder le ratio d'aspect */
    }

    .image-wrapper {
        flex-direction: column; /* Les images en colonne au lieu de ligne */
        gap: 10px;
    }

    .btn {
        padding: 8px 16px; /* Boutons plus petits */
        font-size: 1em;
    }
}
