html {
	height: 100%;
}

body {
	background-color: #194465;
	height: calc(100% - 42px);
}

body:before {
	top: 0;
}

body:after {
	background: inherit;
    content: "";
    display: block;
    height: 21px;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 99;
	bottom: 0;
}

.site {
    margin: 21px;
	background-color: #fff;
	min-height: 100%;
}

/* NavBar */
@media screen and (min-width:768px){
    .navbar-brand-centered {
        position: absolute;
        left: 50%;
        display: block;
        width: 300px;
		transform: translateX(-25%);
        text-align: center;
        background-color: #eee;
    }
    .navbar>.container .navbar-brand-centered, 
    .navbar>.container-fluid .navbar-brand-centered {
        margin-left: -80px;
    }
	
	nav.navbar {
		height: 150px;
		border: none;
		    background-color: #ffffff;
	}
	
	.navbar-brand {
		height: 148px;
		line-height: 120px;
		background: transparent;
	}
	
	.navbar-brand img {
		display: inline;
	}
	
	.navbar-nav>li>a {
		padding-top: 74px;
		padding-bottom: 74px;
		text-transform: uppercase;
	}
}

/* Project */

.project {
	position: relative;
	height: 250px;
	overflow: hidden;
	margin-bottom: 50px;
}

.project.docapost {
	background: url("../images/docapost.jpg") no-repeat;
	background-size: cover;
}

.project.carrefour {
	background: url("../images/carrefour.jpg") no-repeat;
	background-size: cover;
}

.project.phpmyadmin {
	background: url("../images/phpmyadmin.jpg") no-repeat;
	background-size: cover;
}

.project .cache {
	position: absolute;
	z-index: 9;
	height: 250px;
	width: 100%;
	background: url("../images/cache.png") no-repeat;
	background-size: contain;
}

.project img {
	position: absolute;
}

.project .content {
	position: absolute;
    top: 14px;
    left: 25px;
    height: 225px;
    width: 100%;
    z-index: 20;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.project .content .bouton {
	position: absolute;
	bottom: 0;
	margin-top: 0;
	border-radius: 200px;
	width: auto;
	line-height: 6px;
	background: url("../images/fleche.png") 6px 6px no-repeat;
	font-size: 12px;
	padding: 20px 20px 20px 54px;
	text-transform: uppercase;
	color: #fff;
	box-sizing: border-box;
	-webkit-transition: background 400ms; /* Safari */
	transition: background 400ms;
}

.project .content .bouton.jaune {
	background-color: #ffc617;
}

.project .content .bouton.jaune:hover {
	background-color: #ffc617;
}

.project .content .bouton:active {
	background-color: #E85417;
}

@media screen and (min-width:768px){
	.project {
		position: relative;
		height: 668px;
		overflow: hidden;
	}

	.project .cache {
		position: absolute;
		z-index: 9;
		height: 670px;
		width: 682px;
		background: url("../images/cache.png") no-repeat;
	}
	
	.project .content {
		position: absolute;
		top: 180px;
		left: 177px;
		height: 352px;
		width: 587px;
		z-index: 20;
		font-size: 40px;
	}
	
	.project .content .bouton {
		position: absolute;
		bottom: 0;
		left: 272px;
	}
	
	.project .content .bouton:hover {
		background: url("../images/fleche.png") 12px 6px no-repeat;
	}
}

/* Footer */
footer.footer {
	height: 80px;
    background: #009ee0;
}

.footer .text-muted {
    color: #777;
    padding: 20px 0;
    color: white;
}