
/*------------------------------------*\
    $Version Desktop
\*------------------------------------*/

@media screen and (min-width: 480px){
	

	header{
		display: grid;
        grid-column: 1/4;
        grid-template-columns: 1fr 1fr 1fr 1fr;
	}
    footer{
        display: grid;
        grid-column: 1/4;
    }

    #images{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        
        img {
            max-width: 100%;
        }
    }

    ul{
        display: flex;
        justify-content: space-around;
        position: absolute;
        margin:0%;
        width: 350px;
        left : 150px;
        top : 20px;
    }


    #calendrier{
        display: grid;
        padding: 8px;
    }
    
    #intro  {
        width : 700px;
        padding: 8px;
    }

}


/*------------------------------------*\
    $Version Mobile
\*------------------------------------*/



@media screen and (max-width: 480px){
	

	header{
		display: grid;
        grid-column: 1/4;
        grid-template-columns: 1fr 1fr 1fr 1fr;
	}

    ul{
        display: flex;
        position: absolute;
        margin:0%;
        left : 150px;
        top : 20px;
        flex-direction: column;
    }
    
    footer{
        display: grid;
        grid-column: 1/4;
    }

    #images{
        grid-template-columns: 1, 1fr;
    
    }

    #calendrier{
        height: 300px;
        padding: 8px;
    }
    
    #intro  {
        width : 400px;
        padding: 8px;
    }
}




header{
    display: grid;
    background-color: black;
    text-align: center;
    height: 400px;
    color : white;
    margin-inline: auto;
    background-image: url(/images/banniere.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

header #logo{
    position: absolute;
    height: 150px;
    width: 150px;
    top: -30px;
    z-index: 1;
}


h1{
    padding: 8px;
}

h2{
    padding: 8px;
}







#hymne{
    padding: 8px;
    border: none;
}




footer{
    display: grid;
    background-color: black;
    width: 100%;
    color: white;
    bottom: 0%;
    background-size: cover;
  
}


footer p{
    margin : 8px;  
}


body{
    margin: 0%;
    font-family: 'Arial', sans-serif;
    
}



li{
    list-style: none;
}

a:hover{
    color: gold;
    border-radius: 20px;
}

a{
    color:white;
    margin: auto;
    padding-top: 50%;
    text-decoration: none;
    
    
}


#formulaire{
    text-align: center;
    height: 350px;

}










