body {
	background-color: #F6F6F6;
	font-family: "Albert Sans", sans-serif;
}

.flex {
	display: flex;
    height: 100vh;
    align-items: center;
}

a {
	color: #4A5568; 
}

a:hover {
	color: #4A5568; 
}

.links {
	margin: 0; 
	padding: 0; 
	list-style: none;
	border-bottom: solid 1px #111111;
    margin-bottom: 32px;
    padding-bottom: 32px;
}

.links li {
 /* display: block; */
}

.links li a {
    /* text-decoration: none; */
	padding: 4px 0;
	padding-right: 12px;
	color: #4A5568 ;
	/* display: block; */
	font-size: 18px;
	-webkit-transition: all 0.3s ease-out; 
	transition: all 0.3s ease-out; 
}

.links li a:hover {

}

/* Social */

.social {
	margin: 0; 
	padding: 0; 
	list-style: none;
}

.social li {
 /* display: block; */
 margin-bottom: 2px;
}

.social li a {
    /* text-decoration: none; */
	padding: 4px 0;
	padding-right: 12px;
	color: #4A5568 ;
	/* display: block; */
	font-size: 18px;
	-webkit-transition: all 0.3s ease-out; 
	transition: all 0.3s ease-out; 
}

.social li a:hover {

}


.title {
	font-size: 40px;
	color: #111111;
	font-family: "Lora", serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 400;
}

.sub-title {
	font-family: 'Albert Sans', sans-serif;
	font-weight: 400;
	font-size: 20px;
	color: #111111; 
	font-optical-sizing: auto;
	font-style: normal;
	margin-bottom: 32px;
}

.mobile {
	display: none;
	opacity: 0;
}

@media only screen and (max-width: 850px)  {
	.grid-container {
		display: block;
		text-align: center;
	}

	.grid-item { 
		height: auto;
	}

	.main-bg {
		display: none;
		opacity: 0;
	}

	.links li {
		display: block;
	}

	.title {
		font-size: 32px;
	}

	.sub-title {
		font-size: 20px;
	}

	.mobile {
		display: block;
		opacity: 1;
		margin-bottom: 30px;
	}
}