/*COLORS*/
/* 	
	vert = 		#46AE4E
	jaune =		#D5DA2E
	rose =		#46AE4E

/**/	


body {
	background: linear-gradient(to right, #46AE4E, #D5DA2E);
	font-family: helvetica;
	font-style: normal;
}

* {
	box-sizing: border-box;	border:0;
}
a {
	color:#46AE4E;
}
a[href^="http"]::after {
	content: url("images/link.png");
	 margin-left: 5px;
}

a:hover {
	color:hotpink;
}

#container {
	/**/margin: 25px;/**/
	/**/box-shadow: inset 0 -30em 30em rgba(0, 0, 0, 0.1), 0 0 0 0px rgb(255, 255, 255),	0.3em 0.3em 1em rgba(0, 0, 0, 0.3);/**/
	border:0;
}

#header {
	padding: 20px;
	text-align: left;
	background-color: #fff;
}

#header img {
   max-width: 100%;
   height: auto;
}
/* MENU */

nav 
{
    margin: 1px auto;
    width: 50%;
    height: 50px;
    background: #46AE4E;
}
 
nav .main_pages 
{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
 
nav .main_pages a 
{
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    text-decoration: none;
    color: #fff;
	background: #46AE4E;
}
 
nav a:hover 
{
    background: #D5DA2E;
}

label, #toggle
{
    display: none;
}
 
@media all and (max-width: 991px)
{
    nav
    {
		z-index : 10;
        height: 54px;
    }
 
    nav .main_pages 
    {
        display: none;
        flex-direction: column;
        height: 150px;
    }
 
    nav .main_pages a {
        width: 50%;
    }
 
   nav label 
    {
        width: 30px;
        display: flex;
		justify-content: center;
        align-items: center;
        margin: 0 auto;
        font-size: 40px;
        color: white;
        cursor: pointer;
    }
 
    #toggle:checked + .main_pages {
        display: flex;
		z-index:10;
    }
}

/* Create two columns that floats next to each other */
.column {
	float: left;
	padding: 10px;
	height:100%;
	z-index:1;
}

.colleft {
	width: 70%;
	height:100%;
}

.colright {
	width: 30%;
	height:100%;
}

/* Clear floats after the columns */
.row:after {
	content: "";
	display: table;
	clear: both;
}

#footer {
	padding: 20px;
	text-align: center;
	background-color: #ddd;
}


#login {
	margin: 0 auto;
	border: 2px solid #000;
	width:360px;
	padding:20px;
	border-radius: 20px;
}

#login label{
	display:block;
	width:100%
}

.input {
	border:1px solid #46AE4E;
	padding:5px;
	margin:5px 0 5px 0;
	border-radius: 5px;
	text-align:center;
}

.button{
	background-color: #46AE4E; /* Green */
	border: none;
	color: white;
	padding: 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	transition-duration: 0.4s;
	cursor: pointer;
	border-radius: 5px;
}

.button:hover {
  background-color: #D5DA2E;
  color: #000;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
	.column {
		width: 100%;
	}
}


