@import 'https://fonts.googleapis.com/css?family=Baloo|Baloo+Bhai|Lato|Montserrat|Open+Sans|Raleway|Roboto|Shrikhand';
@import 'https://fonts.googleapis.com/css?family=Roboto';
@import url('https://fonts.googleapis.com/css?family=Coiny');

@font-face {
    font-family: consola;
    //src: url('https://cdn-servers.weeplom.com/w-static/_consola.ttf');
}
@font-face {
    font-family: consolab;
    src: url('https://cdn-servers.weeplom.com/w-static/_consolab.ttf')
}
.consolab {
    font-family: consolab;
}
.consola {
    font-family: consola;
}
* {
    outline: none;
    -webkit-appearance:none;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
*::selection {
    background-color: #13384B;
    color: #e3e3e3;
}

body {
	padding: 0;
	margin: 0;
	overflow-x: hidden;
	background-color: white;
}

.navbar {
	background-color: #3E95E1;
	border-bottom: 3px solid rgba(0, 0, 0, 0.2);
	position: fixed;
	width: 100%;
}

.navbar_logo {
	color: white;
	font-weight: bold;
	font-size: 22px;
	display: inline-block;
	cursor: pointer;
	margin-left: 20px;
	margin-right: 40px;
}

.navbar_button {
	border: none;
	color: white;
	cursor: pointer;
	padding: 15px;
	background: transparent;
	font-size: 17px;
}

.navbar_button:hover {
	background: rgba(255, 255, 255, 0.1);
}

.navbar_button-br {
	display: none;
}

@media screen and (max-width: 600px) {
    .navbar_button-br {
		display: block;
    }
    .navbar_logo {
		padding: 10px;
		width: 100%;
		display:none;
    }
}

.home_center_bloc {
	height: 250px;
	background-image: url(../resources/code.jpg);
	background-size: 120% auto;
	background-position: center top;
}

.home_center_btn {
	font-weight: bold;
	color: white;
	font-size: 40px;
	
	height: 100%;
	width: 100%;
	border: none;
	background: rgba(0, 0, 0, 0.6);
}


.home_center_btn_b {
	font-size:19px;
	font-weight:normal;
}

@media screen and (max-width: 750px) {
    .home_center_btn {
		font-size: 30px;
    }
    .home_center_btn_b {
		font-size: 17px;
    }
}

@media screen and (max-width: 530px) {
    .home_center_btn {
		font-size: 25px;
    }
    .home_center_bloc {
		height: 275px;
    }
    .home_center_btn_b {
		font-size: 16px;
    }
}

@media screen and (max-width: 440px) {
    .home_center_btn {
		font-size: 20px;
    }
    .home_center_bloc {
		height: 200px;
    }
    .home_center_btn_b {
		font-size: 15px;
    }
}

@media screen and (max-width: 360px) {
    .home_center_btn {
		font-size: 18px;
    }
    
    .home_center_bloc {
		height: 150px;
    }
    
    .home_center_btn_b {
		font-size: 14px;
    }
}


.newsletter_inscriptor_body {
	width: 100%;
	max-width: 700px;
	padding: 15px;
	margin-top: 10px;
	border-radius: 5px 5px 5px 5px;
	background-color: #3E95E1;
	color: white;
	text-align: left;
}


@media screen and (max-width: 700px) {
    .newsletter_inscriptor_body {
		border-radius: 0px 0px 10px 10px;
		margin-top: 0px;
		box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.2);
	}
}

.input_register_mail {
	font-size: 17px;
	margin-top: 10px;
	padding: 15px;
	color: black;
	width: 100%;
	border-radius:  3px;
	border: none;
	background-color: white;
	transition: 0.3s;
}

.input_register_mail:focus {
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
}

