
*{
	margin:0;
	padding:0;
	box-sizing: border-box;
	text-decoration: none;
}
.max-width{
	max-width: 1300px;
	padding: 0 80px;
	margin: auto;
}
/* navbar styling */
.navbar{
	position: fixed;
	width: 100%;
	padding: 35px 0;
	font-family:'Ubuntu', sans-serif;
	transition: all 0.3s ease;
}
.navbar.sticky{
	padding:15px 0;
	background:red;
}
.navbar .max-width{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.navbar.logo a{
	font-size: 15px;
	font-weight: 600;
}
.navbar .logo a span{
	color: red;
}
.navbar.sticky .logo a span{
	color:#fff;
	transition: all 0.3s ease;

}
.navbar .menu li {
	list-style: none;
	display: inline-block;
}
.navbar .menu li a{
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	margin-left: 25px;
	transition: color 0.3s ease;
}
.navbar .menu li a:hover{
	color: red;
}

/* blog section styling */
p{
	font-family:sans-serif;
	background-color: #998066;
	color:#fff;
	font-size: 22px;
}

th{
	font-family:sans-serif;
	background-color: #998066;
	color:#669999;
	font-size: 22px;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-left: 30px;
}
img{
	background-color:#998066; 
	width: 500px;
	height: 300px;
	margin-left: 60px;
	margin-right: 60px;
	padding-top: 20px;
	padding-bottom: 20px;
}

/*footer part */

#footer{
	height: 60px;
}
.footer-elements{
	position: relative;
}
.footer-elements p{
width:216px;
margin:auto;
margin-top: 60px;

}
.footer-elements ul{
	position: absolute;
	list-style-type: none;
	right:0px;
	top:3px;
}
.footer-elements li{
	display:inline;
}
.footer-elements{
	color: black;
	padding-right:5px;
}