/* Version: 1.0 */
/* Auteurs: Sandra et Guillaume */
/* Description: CSS de la Page MentionLegal 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;
}
	
/*******************************************************/
/*******************************************************/
/*******************************************************/

.Coeur
{
	width: 80%;
	height: auto;
	min-height: 80vh;

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

	border-radius: 10px;

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

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

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

}