
@charset "UTF-8";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%;vertical-align:baseline}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}
@import url("https://fonts.googleapis.com/css?family=Raleway:200,700|Source+Sans+Pro:300,600,300italic,600italic");


*,
*::before,
*::after {
  box-sizing: border-box;
}

html,body{
		margin: 0;
		padding: 0;
	}

	body{
		background-color: #0e2184;
		background-image: url("images/fond_home.jpg");
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		width: 100%;
		height: 100vh;
        display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	.contain{
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		padding: 10px;
		height: auto;
        background-color: rgba(255, 255, 255, 0.052);
        border-radius: 50%;
        width: 50%;
        height: 80%;
	}

    #logo{
		width: 100px;
		height: 100px;
        border-radius: 20px;
        padding: 5px;
        background-color: white;
        margin-bottom: 30px;
	}

	h2{
		font-size: 30px;
		font-weight: 700;
		text-align: center;
        color: red;
        padding: 10px;
		margin-bottom: 40px;
		line-height: 25px;
		border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.514);
	}
	.contain a{
        font-size: 18px;
		font-weight: 700;
        text-decoration: none;
        color: white;
        padding: 10px 15px;
        border-radius: 10px;
        border: 1px solid white;
    }

    .contain a:hover{
        background-color: rgba(255, 255, 255, 0.29);
    }


	@media screen and (max-width: 750px){
        body{
            background-image: url("images/fondmobile.jpg");
        }

        .contain{
            width: 90%;
        }
    
	}