html
{
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

body
{
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;

	background-color: white;
	background: linear-gradient(to right,var(--Rouge) 20%,var(--Mauve));
	/* background:linear-gradient(to right,var(--RosePale) 20%,var(--RoseCherry)); */
	
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	
	position: relative;
}

::selection
{
	background: white;
	color: var(--Rose);
	
	/* color: white; */
	/* background: var(--Rose); */
}
	
/*******************************************************/
/*******************************************************/
/*******************************************************/

/* .PagePhotos */
/* { */
	/* height: 100%; */
	/* width: 100%; */

	/* background-color: yellow; */

	/* display: flex; */
	/* flex-direction: column; */
	/* justify-content: center; */
	/* align-items: center; */
	
	/* position: relative; */
/* } */

/*******************************************************/
/*******************************************************/
/*******************************************************/
/*******************************************************/
/*******************************************************/
/*******************************************************/

/**********************/
/*
/*Bouton de Connexion */
/*
/**********************/

.BnLog
{
	height: 4%;
	width: 100%;
	
	display: flex;
	flex-direction: row;
	justify-content: right;
	align-items: center;
	
	margin-left: -10px;
	
	/* background-color: purple; */
	
	/* position: absolute; */
}
	.Log
	{
		height: calc(100% - 2px);
		width: auto;
		
		background: transparent;
		
		border-radius: 50%;
		border: 1px solid var(--Rose);
		
		z-index: 2;
		cursor: pointer;
	}
		.Log img
		{
			display: block;
			
			height: 100%;
			width: 100%;
			
			border-radius: 50%;
			
			object-fit: contain;
		}
		.Log:hover
		{
			background: white;
			
			border-radius: 50%;
		}

/***********************/
/*
/*Bouton Déconnexion****/
/*
/***********************/
.BnDeco
{
	height: 4%;
	width: 100%;
	
	display: flex;
	flex-direction: row;
	justify-content: right;
	align-items: center;
	
	margin-left: -30px;
	
	/* background-color: blue; */
	
}

.Deco
{
	width: auto;
	/* padding-left: 10px; */
	padding-right: 10px;
	height: 30px;
	display: inline-block;
		
	background-color: var(--Rose);
	
	border: none;
	
	color: white;
	/* font-size: 1.3em; */
	font-family: Verdana, sans-serif;
	letter-spacing: 0.1em;
	
	cursor: pointer;
	
	position: relative;
}

.Deco:hover 
{
  color: white;
  background-color: RoyalBlue;
  
  position: relative;
  top: 5px;
}

/*Biseau droit*/
.Deco:after 
{
	content:"";
					
	position: absolute;
	top: 0px;
	/* right: -10px; */
	transform: skew(-15deg);
					
	height: 0;
	width: 0;
					
	border-style: solid;
	border-width: 15px 0 15px 15px;
	border-color: var(--Rose);
}
.Deco:hover:after 
{
	Border-color: RoyalBlue;
}

/*Biseau gauche*/
.Deco:before 
{
	content:"";
					
	position: absolute;
	top: 0px;
	left:-15px;
					
	height: 0;
	width: 0;
					
	border-style: solid;
	border-width: 15px 0 15px 15px;
	border-color: var(--Rose);
}
.Deco:hover:before 
{
	Border-color: RoyalBlue;
}

/*******************************/
/*
/* Conception de la Structure */ 
/* de la Page d'Accueil */
/*
/******************************/
.First
{
	height: 16%;
	width : 100%;
	
	display: flex;
	flex-direction: row;
	justify-content: right;
	align-items: center;
	
	background-color: white;
	/* background:linear-gradient(to right,var(--RosePale) 20%,var(--RoseCherry)); */
	/* background:linear-gradient(to right,white 20%,var(--RosePale)); */
	
	/* background-image: url("../IMAGES/Rose6.jpg"); */
	/* background-size: 100% auto; */
	/* background-repeat: no-repeat; */
	/* background-position: left; */
	
}

.Coeur
{
	height: 80%;
	width: 100%;
	
	padding-top: 15px;
	padding-bottom: 15px;
	
	/* background-color: yellow; */
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

/*******************************************************/
/*******************************************************/
/*******************************************************/

/*******************************/
/*
/* Conception du Carrousel */
/*
/******************************/

.Carousel
{
	height: calc(95% - 30px);
	width: 50%;
	
	/* background-color: blue; */
	
	position: relative;
	
	
	border: 3px solid var(--Rose);
	border-radius: 22px;
}

/* .CarouselNav */
/* { */
	/* height: 5%; */
	/* width: 50%; */
	
	/* background-color: green; */
/* } */


	/*CSS des Boutons du Carousel*/
	.Carousel button
	{
		position: absolute;
		
		background: none;
		border: none;
		outline: none;
		
		font-size: 3rem;
		
		z-index: 2;
		cursor: pointer;
		
		color: var(--Rose);
		
		transform: translateY(-50%);
		top: 50%;
	}
		#next
		{
			right: -50px;
		}
		#prev
		{
			left: -50px;
		}
			.Carousel button:hover
			{
				color: white;
			}
			
	/*CSS du Tableau d'images*/
	.Carousel ul
	{
		padding: 0;
		margin: 0;
	}
	.Carousel li
	{
		list-style: none;
	}
	
	.Slide 
	{
		position: absolute;
		
		height: 100%;
		width: 100%;
		
		/* background-color: green; */
		
		opacity: 0;
		
		transition: 0.5s ease-in-out;
	}
	.Slide.On
	{
		opacity: 1;
	}

	.Slide img
	{
		display: block;
		
		height: 100%;
		width: 100%;
		
		border-radius: 20px;
		
		object-fit: cover;
		
	}
	
/**********************************************************************/
/**********************************************************************/
/**********************************************************************/
/**********************************************************************/

/*****************/
/* MEDIA QUERIES */
/*****************/

@media screen and (max-width: 1000px)
{
	body
	{
		/* height: auto; */
		justify-content: flex-start;
	}
	
	.BnDeco, .BnLog
	{
		justify-content: center;
		margin-top: 4px;
		margin-bottom: 2px;
		margin-left: 0px;
	}
	
	.First, .Coeur, .Colonne_G, .Colonne_D
	{
		height: auto;
		width: 85%;
		flex-direction: column;
		margin-top: 2px;
		/* background-color: black; */
	}
	
	.Bloc1, .Bloc2
	{
		height: auto;
		width: 100%;
		
		flex-direction: column;
		
		margin-top: 2px;
	}
}