/* luckyducksglass.css */


*{
    box-sizing: border-box;
}


body{
    margin: 0px;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif"
}

.contact{
	line-height: 1.5;
}

header{
    background-image: url("https://dpgs.com/ldg/images/headerbackground.jpg"); /* Replace with your image path */ 
    background-position: center; /* Center the image */ 
    height: 216px; /* Set a height for the header */ 
	width: 1100px;
    display: flex; /* Align items */ 
	flex-wrap: wrap;
	justify-content: center; /* Center horizontally */ 
	background-size: cover; /* Cover the entire header */
	align-items: center; /* to center the header title vertically */ 
}

.navbar{
    background-color: #EFEF95;
    border: 2px solid #000;
    height: 30px;
	text-align: center;
    width: 100%;
	padding: 4px;
}

.navbar ul{
    list-style: none;
    margin: 0px;
    display: inline-flex;
}

.navbar a{
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-weight: bold;
    color: black;
    text-decoration: none;
    padding: 7px;
}

.navbar a:hover{
    color: #61958D;
}


.portfoliobar{
    background-color: #FFF;
    border: 2px solid #000;
	text-align: center;
    width: 100%;
}

.portfoliobar ul{
    list-style: none;
    margin: 0px;
    display: inline-flex;
}

.portfoliobar a{
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    color: #425f5b;
    text-decoration: none;
    padding: 8px;
    display: block;
    text-align: center;
}

.portfoliobar a:hover{
    color: blue;
}

.flex-container {
	display: flex;
    flex-direction: row;
    width: 1100px;
    border: 2px solid #000;
}

.portthumbs{
	background-color: #425f5b;
	color: #fff;
    width: 35%;
    padding: 10px;
}

.main{
	background-color: #425f5b;
	color: #fff;
    width: 55%;
    padding: 20px;
}

.mainthumbs{
	background-color: #425f5b;
	color: #fff;
	width: 1100px;
    padding-left: 60px;
}

.mainthumbsimage{
	background-color: #425f5b;
	color: #fff;
	padding-right: 40px;
	padding-top: 30px;
	Float: left;
}

.break {
  clear: left;
}

.caption {
	background-color: #425f5b;
	color: #fff;
	font-size: smaller;
	border: #425f5b;
	line-height: 10px;
	text-align: center;
}


footer{
    background-color: #B7D194;
	width: 1100px;
    height: 30px;
	line-height: 30px;
	text-align: center;

}
