@charset "utf-8";
/* CSS Document */

body {
min-height: 100vh;
display: flex;
flex-direction: column;
margin:0;
padding:0;
}

.wrapper {
margin:50px;
display: flex;
flex: 1;
}

.content { 
display: flex;
display: -webkit-flex;
justify-content: center;
-webkit-justify-content: center;
width:100%;
flex: 1; 
}

@media (max-width: 480px) {
    .wrapper {
    display: block;
    flex: 1;
    }
    
    nav {
    display: inline-flex;
    display: -webkit-inline-flex;
    justify-content: space-around;
    -webkit-justify-content: space-around;
    width: 100%;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    order: 1;
    }
    
    /* code ajoute par Remi */
    nav a {
    display: block;
    padding: .4em 1em;
    text-decoration: none;
    color: #fff;
    }
}


@media (min-width: 1025px) { 

nav {
display: flex;
justify-content: center;
align-items: center;
}

nav a:nth-of-type(-n+2) {
order: 1;
}


/*footer {*/
/*    margin-top: 4rem;*/
/*    padding: 1rem;*/
/*    background: #FFF;*/
/*    text-align: center;*/
/*}*/
/*footer, footer h2 {*/
/*    color: #000000;*/
/*}*/

/*footer li {*/
/*    display: inline-block;*/
/*    margin-bottom: 1em;*/
/*}*/

/*footer li + li {*/
/*    margin-left: 2rem;*/
/*}*/

/*footer a {*/
/*    display: inline-block;*/
/*    text-align: center;*/
/*    width: 6.2rem;*/
/*    height: 6.2rem;*/
/*    line-height: 6.2rem;*/
/*    border-radius: 33% 67%;*/
/*    color: #fff;*/
/*    text-decoration: none;*/
/*    background: #666;*/
/*    font-size: 1.4rem;*/
/*    vertical-align: middle;*/
/*    -webkit-transition: all .3s ease;*/
/*    transition: all .3s ease;*/
/*}*/

/*footer a:hover, footer a:focus {*/
/*    -webkit-transform: rotate(360deg);*/
/*    -ms-transform: rotate(360deg);*/
/*    transform: rotate(360deg);*/
/*    background: #335271;*/
/*    color: #fff;*/
/*}*/



.container ul li {
    margin-bottom:10px;
    margin-top:10px;
    list-style-type:disc;
    display: list-item;
}
