
/* font-family: 'Montserrat', sans-serif; */
/* Bleu #202aec */

* {
	box-sizing: border-box;
	padding: 0;
	font-family: 'Dosis', sans-serif;
}

#main {
	min-height: 100vh;
	height: auto;
	font-size: 1.3em;
	display:flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin: 30px 10vw;
	border: 2px lightgrey solid;
}

	.texte {
		margin-top: 30px;
	}

	.texte p {
		Font-size: 1.4em;
		padding-bottom: 20px;
		margin: 0;
	}

	.texte .link {
		color: #202aec;
		font-weight: 800;
		margin-bottom: 50px;
		font-size: 1.2em;
		letter-spacing: 1px;
	}

	.texte .link.instagram a {
		display: flex;
		font-size: 0.7em;
		align-items: center;
		justify-content: center;
		gap: 10px;
		height: 50px;
	}

		.texte .link.instagram a img {
			width: 40px;
		}

		.texte .link.instagram a p {
			padding: 0;
		}

/* LOGO */

.logo-container {
	display: flex;
	justify-content: center;
}
	.logo img {
		width: 6vw;
	}

@media screen and (max-width: 720px) {
	.logo img {
		width: 20vw;
	}
}

/* IMAGES */

.img {
	width: 50vw;
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;	
}

	.img div {
		width: 32%;
	}

.img img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 720px) {
	.img {
		width: 95vw;
	}
}

