html, body {
    max-width: 100%;
    overflow-x: hidden;
    background-color: black;
}

.menu {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 80px;
	background-color: black;
}

.logoContainer {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	left: 20px;
	float: left;
	width: 190px;
}

.logoPosition {
	position:relative;
	float: left;
}

.myName {
	color: white;
	font-family: 'Roboto Thin', sans-serif;

	position: absolute;
	float: left;
	left: 70px;
	top: 50%;
	transform: translateY(-50%);
	letter-spacing: 2px;
	font-size: 14px;
}

.galleryImage {
	float: left;
	width: 100%;
}

.fullScreenContainer {
   position: absolute;
	top:80px;
	left:0;
	width: 100%;
	overflow-x: hidden;
	background-color: #272727;
}

.modularSection {
	position: relative;
	box-sizing: border-box;
	float: left;
	width: 100%;
}

.topPadding {
	padding-top: 5rem;
}

.bottomPadding {
	padding-bottom: 5rem;
}

.leftPadding {
	padding-left: 7rem;
}
.rightPadding {
	padding-right: 7rem;
}

.col_1of4 {
	float: left;
	width: 25%;
	background-color: #272727;
}

h2 {
	font-family: 'Roboto Black', sans-serif;
	letter-spacing: 2px;
	color: white;
	font-size: 1rem;
	padding-bottom: 1rem;

}

h3 {
	color: #C4C6C8;
	font-family:'Roboto Bold', sans-serif;
	letter-spacing: 2px;
	font-weight: bold;
	font-size: 1rem;
}

p {
   	color: #C4C6C8;
	font-family: 'Roboto Bold', sans-serif;
	letter-spacing: 2px;
	font-weight: bold;
	font-size: 1rem;
	padding-left: 7rem;
	line-height: 32px;
}

.lightGreyBG {
	background-color: #383938;
}

.col_1of2 {
	width: 40%;
	float: left;
}

.footer {
	height: 80px;
	background-color: black;
	width: 100%;
}

.footerContent {
	position: relative;
	color: white;
	font-family: 'Roboto Thin', sans-serif;
	letter-spacing: 2px;
	top: 50%;
	transform: translateY(-50%);
	float: right;
	padding-right: 40px;
	font-size: 14px;
	text-decoration: none;
}

a {text-decoration: none}

@media screen and (max-width: 1450px){
	.col_1of4 {
		width: 30%;
	}
}

@media screen and (max-width: 1100px){
	.col_1of4 {
		width: 40%;
	}
}	

@media screen and (max-width: 1000px) {
	.footerContent{
		font-size: 12px;
		padding-right: 30px;
	}
}

@media screen and (max-width: 819px) {
	 .footerContent{
		font-size: 10px;
	}
}

@media screen and (max-width: 720px){
	.col_1of4 {
		width: 100%;
	}
	.leftPadding {
		padding-left: 4rem;
	}
	.topPadding {
		padding-top: 3rem;
	}
	.bottomPadding {
		padding-bottom: 3rem;
	}
	h2 {
		font-size: 0.8rem;
	}
	h3 {
		font-size: 0.8rem;
	}
	p {
		padding-left: 4rem;
		font-size: 0.8rem;
	}
}

