/***************************
COLORS
Gold: #CEBC8B
Dark Grey: #121212
Black: 
NAVY: #050644
****************************/

*{
	box-sizing: border-box;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
.overlaycaption,figure,
b, u, i, center,
dl, dt, dd, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%; 
}
html {
  scroll-behavior: smooth;
}
body{
	margin: 0;
	font-weight:400;
	letter-spacing: 0.02em;
	min-height: 100vh;
  	overflow-x: hidden;
	}

/* bodoni-moda-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/bodoni-moda-v25-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* bodoni-moda-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/bodoni-moda-v25-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/montserrat-v29-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/montserrat-v29-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Desktop - bring in your style fonts */

  h1, h2, h3 {
    font-family: 'Bodoni Moda', serif;
  }
  p, li, a, input, button {
    font-family: 'Montserrat', sans-serif;
  }

h3{
	font-size:1.2em;
	padding-bottom:20px;
}

p{
	padding-bottom:30px;
	line-height:26px;
}
.paddingBottom{
	padding-bottom:30px;
}
.paddingTop{
	padding-top:30px;
}
.italic{
	font-style: italic;
}
.contentLink{
	color:black;
	text-decoration: underline 2px solid #CEBC8B;
}
.headingStyleFont{
  font-family: "Bodoni Moda", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.bodyStyleText {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


:focus  { outline: 0; }

/* deleting the default appearence for form elements */
input[type=text], input[type=password], input[type=submit], input[type=button], textarea, button, select 
{ 
	-moz-appearance: none; -webkit-appearance: none;
	border-style:solid;
	border-color:#CEBC8B;
}

/* HTML5 display definitions */
article, aside, details, .overlaycaption, figure, footer, header, hgroup, menu, nav, section, dialog { display: block; }
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
audio:not([controls]) { display: none; }
[hidden] { display: none; visibility: hidden; }

a{
	text-decoration: none;
}
ul{
	list-style: none;
	padding: 0;
	overflow:hidden;
}
.bigBold{
	font-weight:bold;
	font-size:1.2em;
}
.bold{
	font-weight:bold;
}

nav{
	display:flex;
	justify-content:center;
	background-color:white;
	align-items:center;
	position: sticky;
  	top: 0;
	z-index: 100;
	padding:20px 0;
	transition: padding 0.3s ease;
}
.logo{
	max-width:140px;
	margin:5px 20px;
}
.mobileLogo{
	max-width:100px;
}
nav img{
	transition: transform 0.3s ease;
}
nav a{
	color:#121212;
	
}
.navLeft, .navRight{
	width: 40%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
nav a:hover{
	color:#CEBC8B;
}
/*****************************************
MAIN NAV LINK EFFECTS
*******************************************/
.navLink {
  display: inline-block;
	font-size:13px;
}


.link {
  position: relative;
  display: block;
  cursor: pointer;
	padding-top:2px;
}

.link:before, .link:after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  top: 0;
  margin-top: -0.5px;
  background:#121212;
}

.link:before {
  left: -2.5px;
}
.link:after {
  right: 2.5px;
  background:#121212;
  transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.link:hover:before {
  background:#CEBC8B;
  width: 100%;
  transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.link:hover:after {
  background: transparent;
  width: 100%;
  transition: 0s;
}
/***************************************
MOBILE HOME PAGE
*****************************************/
.nav-container {
            display: none;
            justify-content: space-between;
            align-items: center;
            padding: 8px 20px;
            background: black;
            color: white;
        }
       
        
        /* Hamburger Icon */
        .menu-icon {
            display: none;
            cursor: pointer;
            width: 30px;
            height: 25px;
            position: relative;
        }
        .menu-icon div {
            width: 100%;
            height: 4px;
            background: white;
            position: absolute;
            transition: all 0.3s ease;
        }
        .menu-icon div:nth-child(1) { top: 0; }
        .menu-icon div:nth-child(2) { top: 10px; }
        .menu-icon div:nth-child(3) { top: 20px; }

        /* Transform Effect */
        .menu-icon.active div:nth-child(1) {
            top: 10px;
            transform: rotate(45deg);
            background: #CEBC8B;
        }
        .menu-icon.active div:nth-child(2) {
            opacity: 0;
        }
        .menu-icon.active div:nth-child(3) {
            top: 10px;
            transform: rotate(-45deg);
            background: #CEBC8B;
        }

        /* Navigation Links */
        .nav-links {
            display: flex;
            gap: 20px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 18px;
        }
		.nav-links a:hover{
			color:#CEBC8B;
		}

.mobileHomeContainer{
	display:none;
}

.mobileHomeGallery {
    display: flex;
    flex-wrap: wrap;
	flex-direction:column;
    justify-content: center; /* Ensures images stay centered */
    align-items: center;
    gap: 10px; /* Spacing between items */
    max-width: 95%;
    margin: 0 auto;
	min-height: 930px; /* Adjust based on the number of images */
}

.mobileItem {
    position: relative;
    display: flex; /* Allow it to fill available space */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%; /* Adjust width to fit two per row with spacing */
    max-width: 300px; /* Prevents them from getting too large */
    text-align: center;
    overflow: hidden;
}

.mobileItem img {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid #cebc8b; /* Thin gold border */
    padding: 14px; /* Creates inset effect */
    box-sizing: border-box; 
	margin: 20px 0 0;
	aspect-ratio: 300 / 158; /* Ensures correct proportions */
}


.mobileItem span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay for readability */
    padding: 5% 2%;
    font-size: 1em;
    text-transform: uppercase;
    text-align: center;
    width: 75%;
}
.mobileHomeHeading{
	text-align: center;
    font-size: 2em;
}
.mobileHeadingWrapper {
  	min-height: 220px;
	padding: 30px 30px 0 30px;
	margin: 0 auto;
	max-width: 370px;
}

/*************************************
Desktop Home Page
***************************************/
.mainContainer{
	max-width: 1300px;
	margin: 60px auto;
	display: flex;
  	justify-content: space-between; 
}
.leftContainer{
	flex: 1; /* Takes up remaining space */
  	display:flex;
	flex-direction: column;
	max-width:60%;
	margin: 0 auto;

}
.leftContainerGallery{
	max-width:90%;
	margin-right:20px;
}
.rightContainer{
	width: 300px; /* Typical ad container width */
  	height: auto;
	/*background-color:#f9f8f0;*/
}
.mainHeading{
	font-size:3em;
	padding-bottom:80px;
	
}
.aboutHeading{
	padding-bottom:20px;
}
.underline{
	text-decoration: underline #CEBC8B 6px solid;
}
.thinUnderline{
	text-decoration: underline #CEBC8B 2px solid;
	font-weight:600;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns by default */
  grid-gap: 15px;
  width: 100%;
  grid-auto-rows: 200px; /* Set a base row height */
}

.grid-item {
  position: relative;
}

.grid-item img {
  width: 100%;
  height: 100%;
  border-radius: 8px; /* Optional: for rounded corners */
  object-fit: cover; /* Ensures images fill grid areas without distorting */
}

/* Define individual grid items with varying sizes */
.item1 {
  grid-column: span 2;  /* This item takes up 2 columns */
  grid-row: span 2;      /* This item takes up 2 rows */
}

.item2 {
  grid-column: span 1;
  grid-row: span 1;
}

.item3 {
  grid-column: span 1;
  grid-row: span 2;
}

.item4 {
  grid-column: span 2;
  grid-row: span 1;
}

.item5 {
  grid-column: span 1;
  grid-row: span 1;
}

.item6 {
  grid-column: span 2;
  grid-row: span 1;
}


/* Add auto-placement behavior for any overflow */
.grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Make grid responsive */
}
/* General Image and Overlay Styles */



.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure image fills the grid area without distortion */
  border-radius: 8px; /* Optional: Rounded corners */
  transition: filter 0.3s ease-in-out; /* Smooth transition for blur effect */
}

/* Image hover effect - Apply blur */
/* General Image and Overlay Styles */
/* General Image and Overlay Styles */
.grid-item {
  position: relative; /* Make sure grid item is still positioned properly in the grid */
}

.image-container {
  position: relative; /* Allow overlay text to be positioned inside */
  overflow: hidden; /* Hide any overflow like blurred edges of image */
  display: block; /* Ensure it behaves like a block-level element */
  height: 100%; /* Make sure it fills the height of the parent container */
}

/* Grid item images */
.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image fills the space without distorting */
  border-radius: 8px; /* Optional: Rounded corners */
  transition: filter 0.3s ease-in-out; /* Smooth transition for blur effect */
}

/* Image hover effect - Zoom in + Darken */
.grid-item img {
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out; /* Smooth transition for both */
}

.grid-item:hover img {
  transform: scale(1.2); /* Zoom in */
  filter: brightness(0.4); /* Darken the image */
}

/* Centered overlay text */
.overlay-text {
  position: absolute;
  bottom:10%;
  right:1%;
  transform: translate(0, 0);
  color: white; /* Text color */
	font-family: "Bodoni Moda", serif;
  font-size: 26px; /* Font size */
  text-align: right;
  text-decoration: none; /* Remove underline */
  /*background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  padding: 10px 20px; /* Padding around text */
  opacity: 0; /* Start hidden */
  transition: opacity 0.3s ease-in-out; /* Smooth transition for visibility */
  border:1px solid white;
}

/* On hover, show the text and remove the blur */
.grid-item:hover .overlay-text {
  opacity: 1; /* Make the text visible */
}

/**********************************
FOOTER
**********************************/
footer{
	display:flex;
	justify-content:space-between;
	padding:60px 40px;
	background-color:black;
	color:white;
	align-items:center;
	min-height:435px;
}
.footerTitle{
	font-size:2em;
	padding-bottom:24px;
	text-decoration:underline #CEBC8B;
}
.footerAbout{
	width:50%;
}
.footer-logo {
  display: block;
  margin: 0 auto;
  width: auto;
  height: auto;
  max-width: 100%;
	
}
.contactInfo{
	font-weight:1.2em;
}
.gold{
	color:#CEBC8B;
	font-weight:bold;
}
.copy{
	background-color:#121212;
	padding:10px 0;
}
.copy p{
	color: #CEBC8B;
	text-align:center;
	padding:0;

}
.copyRight{
	font-size:.8em;
}
.copy p a{
	color:white;
}
.policyContainer{
	max-width: 80%;
	margin: 40px auto;
}
.aboutPageRight img{
	max-width:400px;
	padding-left:30px;
}
.aboutPageContainer{
	display:flex;
	width: 70%;
	margin: 60px auto;
	max-width:1100px;
}
.contactPageContainer{
	max-width:50%;
	margin:80px auto;
	padding:80px;
	background-color:black;
	color:white;
}
.contactPageContainer h1{
	font-size:3em;
	margin-bottom:80px;
}
.contactPageContainer p a{
	color:#CEBC8B;
}
/**************************************
POST PAGE STYLES
*******************************************/
.postHeading{
	padding:60px 60px 10px 60px;
	font-size:3em;
	text-align:center;
	max-width:1300px;
	margin: 0 auto;
}
.postImageContainer {
  width: 100%;
  height: 350px;
  background-size: cover; /* Ensures the image covers the whole container */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents the image from repeating */
	margin: 60px 0;
	 background-attachment: fixed;
}
.banquettePostImageContainer{
	background-image: url('images/diy-navy-storage-banquette.jpg');
}
.tvPostImageContainer{
	background-image: url('images/cozy-open-concept-living-room.jpg');
}
.patioPostImageContainer{
	background-image:url('images/large-black-gravel-patio.JPG');
	background-attachment:inherit;
}
.kitchenMakeoverContainer{
	background-image:url('images/black-and-white-kitchen-green-tile.jpeg');
}
.rubblePostImageContainer{
	background-image:url('images/backyard-after-concrete-rubble-border.JPG');
	max-width:1200px;
	height:450px;
	width:80%;
	margin:60px auto;
}
.builtInPostImageContainer{
	background-image:url('images/bedroom-built-ins.jpg');
	
}
.featureHallPostImageContainer{
	background-image:url('images/hallway-after-diy-trim.jpg');
	background-position: center bottom;
}
.entryPostImageContainer{
	background-image: url('images/open-concept-entryway-style.jpeg');
}
.builtInDeskContainer{
	background-image:url('images/diy-desk-built-ins.jpeg');
			
}
.shedPostImageContainer{
	background-image:url('images/she-shed-reveal.jpeg');
}
.windowBoxPostImageContainer{
	background-image:url('images/house-exterior-window-box.jpg');
}
.postImage{
	display:flex;
	margin:30px auto;
	max-width:100%;

}

.materials ul li::before, .squares li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #CEBC8B; /* Customize color */
  margin-right: 10px;
}
.twoImageContainer{
	display: flex;
	max-width:100%;
    flex-wrap: wrap;  /* Allow the images to wrap if needed */
    justify-content: center;  /* Optional, to center the images */
	margin:10px auto 40px;
}
.twoImageContainer img {
    max-width: 50%;  /* Ensure the images don’t exceed the container's width */
    height: auto;  /* Maintain the aspect ratio */
    flex: 1 1 auto;  /* Allow images to scale based on container */
	padding:10px;
}

.reveal img{
	display:flex;
	padding:60px 0;
	max-width:100%;
	margin:0 auto;
}
img.rotate-fix{
  transform: rotate(90deg);
}
/*********************************
DIRECTORY PAGE STYLES
***********************************/

.directoryContainer {
    margin: 60px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Ensures responsiveness */
    gap: 20px;
}

.leftDirectory {
    flex: 1; /* Takes up remaining space */
    max-width: calc(100% - 320px); /* Accounts for right directory */
    margin-right: 20px;
}

.rightDirectory {
    width: 300px; /* Fixed width for ads */
    flex-shrink: 0; /* Prevents shrinking */
}

.directoryList {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping */
    gap: 20px;
    justify-content: space-between;
}

.directory-item {
    position: relative;
    width: calc(50% - 10px); /* Adjusted to fit two per row */
    text-align: center;
    overflow: hidden;
}

.directory-item img {
    width: 100%;
    height: auto;
    display: block;
    border: 3px solid #cebc8b; /* Thin gold border */
    padding: 40px; /* Creates inset effect */
    box-sizing: border-box; 
	transition: transform 0.3s ease-in-out; /* Smooth hover effect */
}

.directory-item span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for readability */
    padding: 10% 2%;
    font-size: 1.3em;
    text-transform: uppercase;
    text-align: center;
    width: 70%;
	transition: letter-spacing 0.3s ease, color 0.3s ease;
}
.directory-item:hover span {
    letter-spacing: 2px; /* Increases letter spacing */
    color: #cebc8b; /* Gold color from the border */
}

/**********************************
Home Directory Styles
**************************************/
.homeContainer {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
    padding-bottom: 80px;
}
.homeHeading{
	display: block;
	max-width:90%;
	margin:0 auto;
}

.directoryListHome {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(300px, 1fr)) !important; /* Forces 3 per row */
    gap: 30px;
    width: 100% !important;
    max-width: 1300px; /* Adjust as needed */
    margin: 0 auto;
}
.directoryItemHome {
    min-width: 100% !important; /* Ensures each grid item has a minimum width */
    height: auto !important;
}

.homeContainer .mainHeading{
	padding:60px 0;
	min-height:266px;
}

.directoryItemHome img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover; /* Ensures the images maintain aspect ratio */
	padding:30px;
	border: 1px solid #cebc8b;
}
.directoryItemHome span{
	font-size:1em;
}

/***********************************
SUGGESTED POSTS
*********************************/
.suggestedList{
	max-width:80%;
	margin: 0 auto;
}
.suggestedHeading{
	font-size:2em;
	padding-bottom:40px;
}


/* Make it full width on smaller screens */
@media (max-width: 1024px) {
    .directoryContainer {
        flex-direction: column;
    }

    .leftDirectory {
        max-width: 100%;
    }

    .rightDirectory {
        width: 100%;
    }

    .directory-item {
        width: 100%; /* Make images full width on smaller screens */
    }
}

/*****************************
FURNITURE FLIPPING POST
*******************************/

.singleImageContainer img{
	max-width:100%;
}
.singleImageSmaller img{
	max-width:70%;
	padding:30px 0;
}

.listStyle li::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #CEBC8B;
    margin-right: 10px;
}
.listStyle{
	text-indent: 40px;
}
.subHeading{
	font-family:"Bodoni Moda", serif;
	font-weight: bold;
	font-size: 1.3em;
}
.beforeListSpacing{
	padding-bottom:5px;
}

.headerAboveImage{
	padding-top:40px;
}

/************************************************************************
MEDIA QUERIES
*********************************************************************/
@media (max-width:1300px) {
	.directoryItemHome img {
		padding:10px;
	
	}
	.directoryListHome {
    	gap: 16px;
	}
}
@media (max-width: 1200px) {
  .grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns layout */
  }

  /* Adjust grid positions for image 4 and image 5 */
  .item4 {
    grid-row: 3; /* Place image 4 in row 3 */
    grid-column: span 2; /* Make image 4 span across 2 columns */
  }

  .item5 {
    grid-row: 2; /* Place image 5 in row 2, above image 4 */
    grid-column: span 1; /* Keep image 5 as 1 column */
  }
	.directory-item img {
		border: 3px solid #cebc8b; /* Thin gold border */
		padding: 10px; /* Creates inset effect */
		
	}

}

@media (max-width: 1100px){
	.mainContainer{
		margin:20px auto;
		flex-direction: column;
		justify-content: center;
	}
	.mainHeading{
		font-size: 2.5em;
		text-align: center;
		padding-bottom:40px;
	}
	.leftContainerGallery{
		margin-right:0;
		max-width:96%;
		margin:0 auto;
	}
	.aboutPageContainer{
		width:90%;
	}
}

@media (max-width:1000px){
	.hide{
		display:none;
	}
	.directoryListHome {
   		grid-template-columns: repeat(2, minmax(300px, 1fr)) !important; /* Forces 2 per row */
    	gap: 30px;
 
	}
	.directoryItemHome img {
		padding:30px;
	}
		
	.aboutPageContainer{
			align-items:center;
		}
}
	@media (max-width:900px){
		.aboutPageRight img{
			max-width:300px;
		}
	}
/* For tablets (768px or less) */
@media (max-width: 768px) {
			.mainNav{
				display:none;
			}
			.nav-container{
				display:flex;
			}
            .menu-icon {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                background: black;
                padding: 10px 0;
                text-align: center;
            }
            .nav-links.active {
                display: flex;
				text-transform:uppercase;
            }
            .nav-links a {
                padding: 10px;
                display: block;
            }
			.grid {
    			grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
  			}

  /* Optionally adjust row height for smaller screens */
  .grid-item {
    grid-auto-rows: 150px; /* Smaller row height for smaller screens */
  }
	.item5{
		grid-row:5;
	}
	footer{
		flex-direction: column;
		justify-content: center;
		padding: 60px 20px 20px;
	}
	.footerAbout{
		width:90%;
		margin: 0 auto;
	}
	.contactInfo{
		text-align:center;
		padding:0 10px 30px;
	}
	.footerTitle{
		text-align:center;
	}
	.directoryListHome {
   		grid-template-columns: repeat(1, minmax(300px, 1fr)) !important; /* Forces 1 per row */
    	gap: 30px;
 
	}
	.mobileHomeContainer{
		min-height: 100vh; /* or whatever is needed */
  		display: flex;
		flex-direction:column;
  		align-items: center;
  		justify-content: center;
	}
	.homeContainer{
		display:none;
	}
	.contactPageContainer{
		max-width:60%;
	}
}
@media(max-width:700px){
	.aboutPageContainer{
		flex-direction:column;
	}
	.aboutPageRight img{
		padding-left:0;
	}
	.footer-logo{
		 max-width: 260px;
	}
}
/* For mobile devices (500px or less) */
@media (max-width: 500px) {
  .grid {
    grid-template-columns: 1fr; /* 1 column on small screens */
  }

  /* Optionally adjust row height further on smaller screens */
  .grid-item {
    grid-auto-rows: 120px; /* Adjust to a smaller height */
  }
	.mainHeading{
		font-size:2em;
	}
	.leftContainerPost{
		max-width:80%;
	}
	.postHeading{
		padding: 40px 0 0 0;
		font-size:2em;
		max-width:90%;
	}
	.postImageContainer{
		background-attachment: inherit;
	}
	.footerTitle{
		font-size:1.6em;
	}
	.footerLogo{
		display:flex;
	}
	.grid{
		grid-gap:4px;
	}
	
	.contactPageContainer{
		max-width:90%;
		background-color:white;
		color:black;
		padding:0;
	}
	.copy p{
		font-size:.9em;
	}
	
}
@media(max-width:380px){
	.copy p{
		font-size:.8em;}
}









