#main {
	display: flex;
	align-items: center;
	min-height: 100%;
	justify-content: center;
}

#heading1 {
	font-size: 4em;
	font-weight: 200;
	border-bottom: 2px solid #F3F3F3;
}

#heading1 b{
	font-weight: 600;
}

@keyframes blink {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

#cursor {
	/*background: #F3F3F3;*/
	display: inline;
	animation: blink 1s ease-in-out infinite;
}

#subheading1 {
	padding-top: 1em;
}
#centered-jumbo {
	display: flex;
	justify-content: center;
	align-content: center;
}

#content{
	padding: 4rem;
	text-align: center;

	height:350px;
}

#socials {
	margin-top: 80px;
}

#socials a {
	transition: 0.2s ease-in;
	opacity: 50%;
}

#socials a:hover{
	opacity: 100%;
}


#socials a img{
	max-height: 48px;
}


