	/*Creative Web Design Css*/
*{
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
	font-size: 15px;
	font-family: 'Montserrat',sans-serif;
	}
body{
	margin: 0px;
	padding: 0px;
	background-color: white;
}

a{
	text-decoration: none;
	color: #12CBC4;
	font-size: 20px;
	font-weight: bold;
}

a:hover{
	color: black;
	font-weight: lighter;
}

.container{
	width: 80%;
	margin: auto;
	overflow: hidden;
}

.current{
	border-bottom: 2px solid #82ccdd;
}

#button-1{
	font-weight: bold;
	font-size: 15px;
	color: #2c3e50;
	border: none;
	border-radius: 50px;
	width: 180px;
	height: 25px;
	background-color: #2ecc71;
	margin-right: 55px;
	padding: 0px 35px;
}

#button-1:hover{
	cursor: pointer;
	background-color: #b71540;
	color: white;

}

header{
	display: flex;
	justify-content: space-between;
	background: url('close-up.jpg');
  font-weight: bold;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 30px;
	min-height: 550px;
	border-bottom: 2px solid #b71540;
}

header #branding{
	float: left;
}

header #branding h1{
	margin: 0px;
	font-size: 32px;
	color: white;
	padding: 0px 2px 0px 80px;
}

header li{
	display: inline;
	padding: 0px 20px;
}

nav{
	float: right;
}

footer{
	background: #2ecc71;
	text-align: center;
	height: 100px;
	margin-top: 100px;
}

footer p{
	margin-top: 40%;
	padding-top: 35px;
	font-size: 22px;

}

	/*Media queries for screen size-768px*/
@media(max-width:768px){
	body{
		min-width:100%;
	}

	nav{
		font-size: 1px;
		word-spacing: 1px;

	}

	.nav-links{
		font-weight: normal;
		display: flex;
		padding: 0px 14px 0px 10px;
		position: relative;
	}

	.button-1 {
		overflow: hidden;
		display: inline-block;
		border-radius: 50px;
		width: 50%;
		font-size: 20px;
		padding: 5px 15px;
		margin-right: auto;
		position: absolute;
		right: 10%;
		top: 200px;
	}
}
