Basculer le menu
Changer de menu des préférences
Basculer le menu personnel
Non connecté(e)
Votre adresse IP sera visible au public si vous faites des modifications.
.home-info {
	align-items: flex-start;
	background: var(--home-bg);
	color: var(--home-text);
}

.home-info__text {
	position: relative;
	z-index: 1;
	width: 80vw;
	padding-right: 20vw;
	line-height: 1.65em;
}

.home-info__text h1 {
	font-size: 2rem;
}

.home-info__text p {
	font-size: 1.2rem;
}

.home-info__image {
	position: absolute;
	top: 5vh;
	left: 100vw;
	height: 85vh;
	transition: transform 50ms linear;
}

.home-info__image img {
	height: 100%;
	width: auto;
	max-width: none;
}

.home-info__stats {
	display: none;
	flex-direction: row;
	justify-content: space-around;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
	margin-top: 12rem;
	width: 100%;
	gap: 1.5rem;
}

.home-info__stats.is-visible {
	display: flex;
}

@media (max-width: 650px) {
	.home-info__image {
		display: none;
	}
	
	.home-info__text {
		padding-right: 0;
	}

	.home-info__stats {
		margin-top: 4rem;
	}
}