:root 
{
  --orange-color: #f85e00;
  --green-color: #4c481b;
  --title-font: "Tangerine", cursive;
  --text-font: "Ubuntu", serif;
}

*,
*::after,
*::before 
{
	margin: 0;
    padding: 0;
    box-sizing: inherit;
}

header 
{
	display: flex;
	flex-direction: column;
}

div.header 
{
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	background-color: var(--green-color);
	height: 14vh;
	margin-top: 2.7rem;
}

p.logo__name
{
	color: var(--orange-color);
	font-family: var(--title-font);
	font-size: 3rem;
}

img.logo__img
{
	width: 9%;
	border: 1px solid var(--green-color);
	border-radius: 50%;
}

div.logo__right .logo__name
{
	font-size: 2rem;
	text-align: center;
}

.presentation 
{
	width: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 4rem 0;
}

.presentation__img
{
	width: 40%;
	border: 1px solid var(--green-color);
	border-radius: 50px;
}

.presentation__text
{
	width: 40%;
	display: flex;
	flex-direction:  column;
	justify-content: space-around;
	align-items: center;
}

.presentation__title, .soins__title
{
	font-family: var(--title-font);
	color: var(--orange-color);
}

.presentation__title
{
	font-size: 4rem;
}

.presentation__infos
{
	display: flex;
	flex-direction: column;
}

.infos
{
	font-size: 1.2rem;
	font-family: var(--text-font);
	margin: .9rem 0;
	line-height: 1.8;
	text-align: justify;
}

.name
{
	color: var(--orange-color);
	font-family: var(--title-font);
	font-size: 2.5rem;
}

.separators
{
	width: 100%;
	margin: 2rem 0;
}

.line__separator, .prestation__sep
{
	width: 100%;
	height: .2rem;
	margin: .5rem 0;
}

.line__separator, .prestation__sep
{
	border: .4rem dotted var(--green-color);
}

.soins
{
	margin: 1rem auto;
}

.soins__title
{
	font-size: 6rem;
	text-align: center;
	margin: 2rem auto;
}

.prestations
{
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
}

.prestation__title
{
	text-align: center;
	color: var(--orange-color);
	font-size: 2.5rem;
	font-family: var(--title-font);
}

.prestation__sep
{
	border: .14rem dotted var(--green-color);
}

.prestation
{
	width: 35%;
}

.prestation__short
{
	width: 22%;
}

.prestation__medium
{
	width: 25%;
}

.prestation__high
{
	width: 40%;
}

th,
td
{
	padding: .4rem;
}

tbody tr:hover
{
	color: var(--orange-color);
}

table
{
	text-align: center;
}

thead tr th
{
	font-size: 1.2rem;
}

thead td,
tbody td
{
	text-align: right;
}

footer
{
	width: 100%;
	height: 7vh;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 0 auto;
	background-color: var(--green-color);
}

.footer__text
{
	font-size: 1.8rem;
	color: var(--orange-color);
	font-family: var(--title-font);
}

/*Media Queries for devices < 1200px */
@media all and (max-width: 1200px)
{
	.header
	{
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		align-items: center;
		height: 9vh;
		margin-top: 4rem;
	}

	.logo__img
	{
		width: 18%;
	}

	.logo__name
	{
		font-size: 2.5rem;
	}

	.logo__right .logo__name
	{
		font-size: 1.7rem;
	}

	.presentation__text
	{
		width: 50%;
	}

	.infos
	{
		font-size: 1rem;
		margin: .9rem 0;
		line-height: 1.5;
	}

	.name
	{
		font-size: 2em;
	}

	.presentation__title
	{
		font-size: 3rem; 
	}

	.soins__title
	{
		font-size: 4rem;
	}

	.prestation
	{
		width: 48%;
		margin: 1rem auto;
	}

	.prestation__short
	{
		width: 36%;
	}

	.prestation__high
	{
		width: 70%;
	}

	.prestation__title
	{
		font-size: 2rem;
	}
}

/*Media Queries for devices < 900px */
@media all and (max-width: 900px) 
{
	div.header
	{
		display: flex;
		align-items: center;
		height: 15vh;
		margin-top: 0;
	}
	p.logo__name
	{
		font-size: 2rem;
	}
	img.logo__img
	{
		width: 15%;
	}
	div.logo__right .logo__name
	{
		font-size: 1.5rem;
		text-align: center;
	}

	.presentation 
	{
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		align-items: center;
	}

	.presentation__img
	{
		width: 80%;
		margin-bottom: 2rem;
	}

	.presentation__text
	{
		width: 90%;
	}

	p.infos
	{
		font-size: 1.2rem;
	}

	.prestations
	{
		display: flex;
		flex-direction: column;
	}

	.prestation
	{
		width: 70%;
	}

	.prestation__title
	{
		font-size: 2.5rem;
	}

	.prestation__short
	{
		width: 50%;
	}

	.prestation__high
	{
		width: 90%;
	}
}


/* Media Queries for small devices < 600px */
@media all and (max-width: 600px) 
{
	div.header
	{
		height: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-top: 0;
	}
	p.logo__name
	{
		font-size: 3rem;
	}
	img.logo__img {
		width: 25%;
	}
	div.logo__left, div.logo__right
	{
		margin-top: 1rem;
	}
	div.logo__right
	{
		margin-bottom: 1rem;
	}
	div.logo__right .logo__name
	{
		font-size: 2rem;
		text-align: center;
	}

	.prestation
	{
		width: 90%;
	}

	.prestation__title
	{
		font-size: 2.5rem;
	}

	.prestation__short
	{
		width: 70%;
	}

	footer
	{
		width: 100%;
		height: 14vh;
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		align-items: center;
		background-color: var(--green-color);
		padding: 1rem 0;
	}

}

/* Media Queries for small devices < 420px */
@media all and (max-width: 420px)  
{
	div.header
	{
		height: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-top: 0;
	}
	p.logo__name
	{
		font-size: 2.4rem;
	}
	div.logo__right
	{
		margin-bottom: 1rem;
	}
	div.logo__right .logo__name
	{
		font-size: 1.7rem;
	}
	
	.presentation__title
	{
		font-size: 2rem;
	}

	p.infos
	{
		font-size: 1rem;
	}

	.prestation__short
	{
		width: 90%;
	}

}


