/*reset CSS*/


/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}




/*début du code*/

/*Disposition générale*/
@font-face {
  font-family: "fontprinc";
  src: local(fonts/FONTPRI.eot) format("eot")
       local(fonts/FONTPRI.otf) format("otf")
       local(fonts/FONTPRI.woff) format("woff");
}


/*header*/
header{
    display: flex;
    flex-direction: row;
    height: 25%;
    column-gap: 0px;
    font-family: ;
    font-size: 12pt;
    margin: 2% 10% 1% 10%; 
    display: flex;
    justify-content: space-between;
}
header a{
    color: white;
    text-decoration: none;
    padding : 10px 25px 10px 25px;  
    border-radius: 10px;
    text-align: center;
    font-family: "fontprinc", sans-serif;
}
header div a:last-of-type{
    background-color: #AB41F7;
    border: solid #AB41F7 2px;
    
}
header div a:last-of-type:hover{
    transition-duration: 0.2s;
    background-color: #323232;
    border: solid #AB41F7 2px;
}
header div a:first-of-type:hover{
    color: #AB41F7;
    transition-duration: 0.2s;
}
header div a:nth-child(2):hover{
    color: #AB41F7;
    transition-duration: 0.2s;
}
#menu{
    margin-top: 2em;
}
header img{
    width: 240px;
}





body{
    margin: 0px;
    background-image: url(images/visuel.svg);
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
    width: 100%;
    font-family: "fontprinc", sans-serif;
}
#assist-info{
    text-align: center;
    margin-top: 10%;
    margin-right: 30%;
    margin-left: 30%;
    margin-bottom: 10%;
    color: white;
}

h1{
    font-size: 23pt;
    margin-bottom: 3%;
    text-align: center;
    font-family: "fontprinc", sans-serif;
}

#assist-info p{
    font-family: "fontprinc", sans-serif;
    font-size: 15px;
    line-height: 18px;
}







form{
    background-color: #313131;
    margin-right: 30%;
    margin-left: 30%;
    padding: 5%;
    border-radius: 20px;
}
label{
    color: #B11EFF;
    font-size: 15pt;
    margin-bottom: 50px;
}
main{
    font-family: "fontprinc", sans-serif;
}
input{
    color: white;
    margin-top: 2%;
    margin-bottom: 2%;
    padding: 5px;
    background-color: #707070;
    border: none;
    border-radius: 10px;
}
select{
    color: white;
    margin-top: 2%;
    margin-bottom: 2%;
    padding: 10px;
    background-color: #707070;
    border: none;
    border-radius: 10px;
}
textarea{
    width: 60%;
    height: 25%;
    color: white;
    margin-top: 2%;
    background-color: #707070;
    border: none;
    border-radius: 10px;
}
select:nth-of-type(2){
    margin-bottom: 5%;
}





/*footer*/

footer{
    background-image:url(images/visuel2.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size:cover;
    height: 254px;
    margin: 0;
}
footer div:first-of-type{
    position: relative;
    top: 40%;
    display: flex;
    justify-content: space-between;
    margin-left: 25%;
    margin-right: 25%;
}
footer div:nth-child(2){
    position: relative;
    top: 55%;
    text-align: center;
    color: gray;
    font-size: 10pt;
    font-family: "fontprinc", sans-serif;
}
footer div:nth-child(2) p{
    margin-bottom: 5px;
}
footer a{
    text-decoration: none;
    color: white;
    text-decoration: none;
    font-family: "fontprinc", sans-serif;
}

footer a:hover{
    text-decoration: underline;
}



/*partie responsive*/
@media only screen and (max-width: 850px){
    
    body{
    background-image: url(images/Groupe%2011.svg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    width: 100%;
    }
    #assist-info{
    margin-top: 20%;
    margin-right: 12%;
    margin-left: 12%;
    margin-bottom: 20%;
    }

    
    h1{
        font-size: 15pt;
    }
    
    #assist-info p{
        font-size: 10pt;
    }
    form{
        margin-right: 10%;
        margin-left: 10%;
        margin-bottom: 100%;
    }
    label{
        font-size: 11pt;
        margin-bottom: 15px; 
    }

    header img{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    header{
        font-size : 2pt;
        margin-top: 24%;
    }
    
    #menu{
        display: none;
    }
    footer{
        margin-top: 80%;
    }
    footer div:first-of-type{
        margin-left: 15px;
        margin-right: 15px;
        top: 30%;
    }
    footer a{
        margin: 15px;
        font-size: 10pt;
    }
}