body {
	margin:0;
	font-family: Rock Salt;
}
#home {
	background-image: url("https://images.unsplash.com/photo-1565378435245-4282cbde883e?ixlib=rb-1.2.1&auto=format&fit=crop&w=784&q=80");
	background-position: center;
	/*background-size: cover;*/
	height: 100vh;
}

#directory {
	text-align: right;
	padding-top: 50px;
}

#directory h2{
	display: inline;
	margin-right: 35px;
	font-size: 35px;
	color: white;
}

a:link {
	text-decoration: none;
}

h1{
	color: white;
	margin:0;
	font-size: 100px;

	position:absolute;
	top:50%;
	left:50%;

	transform: translateX(-50%) translateY(-50%);

	border: solid white;
	border-width: 8px;
}

#about{
	height: 40vh;
	display:flex;
	justify-content: center;
	align-items: center;
}

#about p {
	font-size: 26px;
	width: 60%;
	line-height: 40px;
	border: 5px;
	border-color: solid blue;
}

#row{
	display: flex;
	margin: 0 0.5%;
}

.column{
	flex: 23%;
	max-width: 25%;
	padding: 0 0.5%;
}

.column img{
	margin-top: 2.5%;
	width: 100%;
}

.hvrbox,
.hvrbox * {
	box-sizing: border-box;
}
.hvrbox {
	position: relative;
	display: inline-block;
	overflow: hidden;
	max-width: 100%;
	height: auto;
}
.hvrbox img {
	max-width: 100%;
}
.hvrbox .hvrbox-layer_bottom {
	display: block;
}
.hvrbox .hvrbox-layer_top {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	padding: 15px;
	-moz-transition: all 0.4s ease-in-out 0s;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}
.hvrbox:hover .hvrbox-layer_top,
.hvrbox.active .hvrbox-layer_top {
	opacity: 1;
}
.hvrbox .hvrbox-text {
	text-align: center;
	font-size: 10px;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.hvrbox .hvrbox-text_mobile {
	font-size: 15px;
	border-top: 1px solid rgb(179, 179, 179); /* for old browsers */
	border-top: 1px solid rgba(179, 179, 179, 0.7);
	margin-top: 5px;
	padding-top: 2px;
	display: none;
}
.hvrbox.active .hvrbox-text_mobile {
	display: block;
}