* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Raleway', 'sans-serif';
    min-width: 1450px;
}

/* NAV */
.nav {
	height: 50px;
	background-color: rgb(59, 117, 204);
	text-align: center;
	line-height: 50px;
}

.nav-item {
	display: inline-block;
}

.nav-item a {
	padding: 0 50px;
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 2px;
	transition: color 0.3s;
}

.nav-item a:hover {
	color: crimson;
}

/* HEADER */
.header-img {
	position: relative;
	height: 200px;
	background-image: url('../img/nature-3097241.jpg');
	background-size: cover;
	background-position: 0 100%;
}

.header-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
}

.header-img .img-left {
    position: absolute;
    left: -20%;
    width: 100px;
}

.header-img .img-right {
    position: absolute;
    right: -20%;
    width: 100px;
}

.header-text h1 {
    margin-bottom: 12px;
    font-size: 36px;
    letter-spacing: 1 px;
    text-decoration: teal;
}

.header-text p {
    font-size: 24px;;
}

.header-bg {
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: rgba(14, 14, 255, 0.1);
}

/* FOOTER */

footer {
    height: 80px;
    line-height: 80px;
    background-color: rgb(59, 117, 204);
    color: white;
    text-align: center;
    font-size: 20px;
}

.icon-box {
    margin-left: 20px;
}

.icon-box a{
    margin: 0 5px;
    color: white;
    font-size: 30px;
    transition: color .3s;
}

.icon-box a:hover{
    color: crimson;
}
