

body
{
	font-family: Arial, Times New Roman;
	font-size: 1em;
    width: 100%;
    background-color:#DCDCDC;
	margin: 0;
	}

#programme
{
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    margin-top: 0px;
    z-index: 0;
}

#texte
{
    display: flex;
    position:absolute;
    top:33px;
    margin-left: 30%;
    width: 40%;
    z-index: 1;
    text-align: center;
    }

#conteneur
{
    display: flex;
    justify-content: space-around;
	align-items: center;
    text-align: center;
}

.element
{
    margin-top: 10px;
    padding-top: 10px;
	background-color:#DCDCDC;
    height: 80px;
    width: 200px;
    border: 1px solid whitesmoke;
    border-radius: 10px;
    cursor:pointer;
	color:#666666;
	font-family:Arial;
	font-size:13px;
	font-weight:bold;
	text-shadow:0px 1px 0px #ffffff;
}	

.element:hover {
   
	background:linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
	background-color:#f6f6f6;
}

a:link 
{ 
 text-decoration:none;
 color:#666666;
} 


@media all and (max-width: 480px)
{
	
	#conteneur
	{
		flex-direction: column;
		}
    #texte
	{
        margin-left: 55px;
	    width: 70%
		}
