*{
    margin: 0;
	padding: 0;
	text-decoration: none;
	list-style: none;
	border: none;
	background: transparent;
	transition: background-color .5s;
}
html{
	scroll-behavior: smooth;
	--font1: "Poppins", sans-serif;
	--font2: "Oswald", sans-serif;
}
html::-webkit-scrollbar {
display: none;
}
html{
	scrollbar-width: none;
}
.no-scroll {
    overflow: hidden;
}
html.clair{
	--color1: #fffff5;
	--color2: #000000;
	--color3: #e5c76e;
	--color4: #fff4d6;
	--texteColor1: #000000;
	--texteColor2: #e5c76e;
	--texteColor3: #ffffff;
}
html.sombre{
	--color1: #121212;
	--color2: #fffeef;
	--color3: #e5c76e;
	--color4: #ffedbb;
	--texteColor1: #ffffff;
	--texteColor2: #e5c76e;
	--texteColor3: #000000;
}
body{
    width: 100%;
	background: var(--color1);
}


.separation{
	height: 10px;
	background: var(--color3);
	margin-bottom: 20px;
}
.left{
	text-align: left;
	margin-left: 40px;
	margin-right: 20px;
}
.middle{
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.separation.left{
	width: 100px;
}


.btn{
	display: grid;
	align-items: center;
	justify-content: center;
	grid-template-columns: 100%;
	grid-template-rows: 100%;
	width: 250px;
	height: 30px;
	font-size: 18px;
	text-align: center;
	line-height: 30px;
	transition: .3s;
	border: 1px solid var(--color2);
	margin: 0 auto 10px auto;
	color: var(--texteColor1);
}
.btn p{
	z-index: 1;
	grid-column: 1;
	grid-row: 1;
}
.btn .bg{
	width: 250px;
	height: 0;
	align-self: center;
	background: #e5c76e;
	z-index: 0;
	transition: .6s;
	grid-column: 1;
	grid-row: 1;
}
.btn:hover .bg{
	height: 30px
}

.titre2{
	color: var(--texteColor1);
	font-family: var(--font2);
	font-weight: 300;
	font-size: 40px;
}
.titre3{
	color: var(--texteColor1);
	font-family: var(--font2);
	font-weight: 200;
	font-size: 23px;
}
.titre4{
	color: var(--texteColor1);
	font-family: var(--font1);
	font-weight: 100;
	font-size: 17px;
}

.titre .separation{
	width: 100px;
	margin-bottom: 20px;
}


/*	<div class="polices">
		<span class="damion-regular">Damion</span><br>
		<span class="merriweather-regular">Merriweather</span><br>
		<span class="nunito">Nunito</span><br>
		<span class="roboto-light">Roboto</span><br>
		<span>#e5c76e</span><br>
		<span>#f3ecd8</span><br>
	</div>

*/

/*Loader*/
.loader{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10000000;
	position: fixed;
	background-color: var(--color1);
}
.loader .dot{
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background: var(--color2);
	margin: 10px;
	animation: load infinite .3s alternate;
}
@keyframes load {
	100%{
		transform: translateY(-25px);
	}
}
.dot:nth-child(2){
	animation-delay: 0.1s;
}
.dot:nth-child(3){
	animation-delay: 0.2s;
}
.fondu-out{
	opacity: 0;
	z-index: -9999;
	transition: .3s ease-out;
	transition-delay: .5s;
	display: flex;
}


.imgbtn{ 
	width: 40px !important;
	height: 40px !important;
	border-radius: 50%;
	box-shadow: 2.5px 2.5px 5px #b5b5b5,
             -2.5px -2.5px 5px #ffffff;
	flex-shrink: 0;
}
.imgbtn img{
	width: 25px;
}
.imgbtn:hover{ 
	box-shadow: inset 2.5px 2.5px 5px #b5b5b5,
            inset -2.5px -2.5px 5px #ffffff;
}
.sombre header .imgbtn{
	box-shadow: 2.5px 2.5px 5px #525252,
             -2.5px -2.5px 5px #000000;
}
.sombre header .imgbtn:hover{ 
	box-shadow: inset 2.5px 2.5px 5px #525252,
            inset -2.5px -2.5px 5px #000000;
}



/*MODE*/
.mode{
	width: 30px;
	height: 15px;
	border-radius: 7px;
	background: var(--color1);
	border: .3px solid var(--color2);
	position: fixed;
	z-index: 100001;
	bottom: 25px;
	left: 50px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	transition: all .6s cubic-bezier(.23,1,.32,1);
}
.mode .rond{
	width: 12px;
	height: 12px;
	background: var(--color3);
	border-radius: 6px;
	transition: all .6s cubic-bezier(.23,1,.32,1);
}
.clair .mode .rond{
	margin-left: 1.5px;
}
.sombre .mode .rond{
	margin-left: 16.6px;
}

