/* customisation clockify */

body{
	color: crimson	;
	background-color: #D3D3D3;
	background-image: url(images/grilles.png);
	font-family: archivo;
color: white;
}

a,
a:visited{
	color: crimson;
	text-decoration: none;
}

/* structure  */

.site-main{

	margin: 0 auto;
	background-color: #FF00C1;
	margin-left: 1rem;
	margin-right: 1rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
	border-radius: 12px;


}


.site-header,
.site-footer,
.site-main{
	padding: 1rem;
}

.site-footer{
	background-color: #FF00C1;
	border-top-right-radius: 12px;
	border-top-left-radius: 12px;
	margin-top: 1rem;
}

/* header */


.site-header{

	display: flex;
	justify-content: space-between;
	align-items: baseline;
	align-items:flex-end;
	background-color:#212121 ;
	text-transform: uppercase;
	font-weight: 700;
	color: white;
	margin-left: 16px;
	margin-right: 16px;
	margin-top: 16px;
	border-radius: 12px;
	position: sticky;

	
}
.site-title a{
	display: block;
	width: 200px;
	height: 50px;
	background:url(images/logo-clockify.svg) no-repeat center center;
	background-size: contain;
	text-indent: -5000px;

}
h1.site-title,
p.site-title{
	margin: 0;  
	padding: 0;
	font-size: 1rem;
	line-height: 1;
}
/* navigation */
.main-navigation{
	width: fit-content;
}
.main-navigation ul{
	gap: 20px;
}
.main-navigation li a {
	color: rgb(255, 255, 255);
	letter-spacing: -0.02em;
}

.main-navigation li a:hover {
color:#FF00C1;
transition: 0.3s;
}
.main-navigation li.current-menu-item a{
	color:#FF00C1;
}
/* submenu*/
.main-navigation ul ul{
display: block;
background-color: white;
}
.main-navigation.toggled ul ul{
	position: static;
	background-color: transparent;
	box-shadow: none;
}
/* responsive navigation */
.menu-toggle{
	width: 80px;
	height: 80px;
	border: 0;
	background: url(images/menu-2.svg) no-repeat center center;
	background-size: contain;
	text-indent: -5000px;
	position: fixed;
	top: 0;
	right: 0;	
	z-index: 99999;
}
.toggled .menu-toggle{
	background: url(images/menu-1.svg) no-repeat center center;
	border: 0;
}
.toggled .menu-menu-principal-container{
	background-color: gold;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding:  1rem 1rem 5rem 1rem;
}
 .main-navigation.toggled li a{
font-size: 1.5rem;
display: inline-block;
padding: 0.5rem 0;
}
/* font */

@font-face{
font-family: archivo;
src: url(webfont/archivo3);
}

/*HOMEPAGE*/

.home section{
	min-height: 200px;
	background-color: blueviolet;
	padding: 2rem 0;
	margin: 0 0 2rem 0;
}


h2.wp-block-heading{
	font-size: 10em;
margin: 0;
text-transform: uppercase;
font-weight: 800;
color: white;
}

p.has-text-align-center{
color: white;
font-size: 1.5em;
font-weight: 700;
width: 60%;
margin: auto;

}

div.entry-content{
	margin: 0;
}

img.wp-image-93{

	margin-top: 2em;
	margin-bottom: 2em;
}

a.wp-block-button__link{
	background-color: blue;
	border-radius: 10px;
	font-size: 1.5em;
	font-weight: 600;

}

div.colonne2{
display: flex;
flex-direction: column;
height: 100%;
}

footer p{
	margin: 0;
}

.wp-block-columns.fluid-4-template{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(3, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}

.fluid-4-template .wp-block-column:first-of-type{
	grid-area: 1 / 1 / 2 / 2;
}
.fluid-4-template .wp-block-column:nth-child(2){
	grid-area: 2 / 1 / 3 / 2;
}
.fluid-4-template .wp-block-column:nth-child(3){
	grid-area: 3 / 1 / 4 / 2;
}
.fluid-4-template .wp-block-column:last-of-type{
	grid-area: 1 / 2 / 4 / 3;
}