/* Version: 1.0 */
/* Auteurs: Sandra et Guillaume */
/* Description: CSS de la Page Photo du Site des Roses */

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

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

	background-color: white;
	
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;

	font-family: Arial, Helvetica, sans-serif;

	position: relative;
}

::selection
{
	background: #64B4F6;
	color: #5AF7B8;
}

* {
	margin: 0;
	padding: 0;

	box-sizing: border-box;

	outline: none;
	text-decoration: none;
}
	
/*******************************************************/
/*******************************************************/
/*******************************************************/


/*******************************/
/*
/* Conception de la Structure */ 
/* de la Page d'Accueil */
/*
/******************************/

.Coeur
{
	width: 80%;
	height: 80vh;

	background-color:#C8C7FD ;
	background: linear-gradient(45DEG,#C8C7FD,#C2E2FD);
	background: linear-gradient(45DEG,#9997FA, #C2E2FD);

	border-radius: 10px;

	padding: 1.5rem;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

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

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

.Carousel
{
	height: 100%;
	width: calc(100% - 5rem);
	
	position: relative;
	
	border-radius: 15px;

	/* Ajout de luminosité */
	border-left: 1px solid rgba(255,255,255,0.3) ;
	border-top: 1px solid rgba(255,255,255,0.3) ;

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

	.Slide img
	{
		display: block;
		
		height: 100%;
		width: 100%;
				
		object-fit: contain;
		
	}
	
/**********************************************************************/
/**********************************************************************/
/**********************************************************************/
/**********************************************************************/

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

@media screen and (max-width: 600px){
	.Coeur
	{
		width: 90%;
	}

}