/* Atelier 85 CSS Tools 2022 (framework) - V1.1
-----------------------------------------------------------------------

By Nicolas EVARISTE (http://www.atelier85.fr)
© 2023 Atelier 85 - All rights reserved - Toute reproduction interdite

---------------------------------------------------------------------*/

/* Reset
---------------------------------------------------------------------*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
img {
	max-width: 100%;
	height: auto;
	border: none;
    vertical-align: middle;
	border-radius: 0;
}
h1, h2, h3, h4, h4, h5, h6 {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-weight: normal;
	padding: 15px 0;
}
form, figure, .wp-block-image{
	margin: 0;
	padding: 0;
}
iframe {
  border: 0;
  max-width: 100%;
}

/* General
--------------------------------------------------*/
html, body {
	height: 100%;
}
body {
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	color: #000;
	background: #fff;
	margin: 0;
	-webkit-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}
a {
	-webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

a:focus { outline: none; }


/* Cols
--------------------------------------------------*/
.row {
	position: relative;
    display: table;
    height: 100%;
    margin: auto;
    overflow: auto;
    table-layout: fixed;
}
.col {
    display: table-cell;
	width: 100%;
	height: 100%;
    vertical-align: middle;
}

/* Logo
--------------------------------------------------*/
div#logo{
	width: 500px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	padding-left: 30px;
}
div#logo img{
	width: auto;
	max-width: 100%;
	height: auto;
}

/* Lien
--------------------------------------------------*/
div#lien{
	padding-top: 50px;
	padding-bottom: 50px;
	text-align: center;
}
div#lien a{
	color: #000;
	font-size: 22px;
	font-weight: 600;
}



@media screen and (max-width: 600px) {

/* Logo
--------------------------------------------------*/
div#logo{
	width: 85%;
	padding-left: 0px;
}


}

