*{
	box-sizing: border-box;
}

body{
	margin: 0;
	padding: 0;
}

.container{
	width: 100%;
	height: 100%;
	font-family: Raleway;
}

.navbar{
	width: 100%;
	height: 60px;
	background: #2C3E50;
	display: flex;
	align-items: center;
}

.logo{
	width: 10%;
	text-align: center;
	overflow: hidden;
	padding: 5px;
	font-size: 1.2em;
	color: orange;
}

.logo img{
	width: 100%;
	max-width: 100%;
	height: 100%;
	max-height: 100%;
}

.nav-items{
	width: 70%;
	height: 60px;
	display: flex;
	align-items: center;
	font-size: 1.2em;
	padding-left: 30px;
}

.nav-item{
	padding: 5px;
	margin: 0px 10px;
}

.nav-item a{
	text-decoration: none;
	color: white;
}

.nav-item a:hover, .contact a:hover{
	color: #E74C3C;
}

.nav-right{
	width: 20%;
	height: 60px;
	font-size: 1.2em;
}

.float-right{
	float: right;
	display: flex;
	align-items: center;
	height: 60px;
	padding-right: 30px;
}