*
{
	box-sizing:border-box;
	margin:0;
	padding:0;
}

body
{
	font-size:18px;
}

h1
{
	font-size:32px;
}

#hero
{
	height:90vh;
	background-image:url("../assets/profile.jpg");
	background-size:contain;
	background-repeat:no-repeat;
	background-position:right;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:start;
	width:90%;
	margin:10px auto;
}

#hero > h1
{
	padding:10px;
}

#hero > p
{
	padding:10px;
	width:100%;
	max-width:550px;
}

a
{
	font-weight:bold;
	text-decoration:none;
	border:1px solid black;
	border-radius:25px;
	padding:10px 50px;
	margin:10px;
	color:white;
	background-color:blue;
}

.section-title
{
	text-align:center;
	margin:50px 0 10px 0;
}

ul
{
	display:flex;
	flex-flow:row wrap;
	justify-content:center;
}

li
{
	list-style-type:none;
	border:1px solid black;
	padding:10px 40px;
	margin:20px;
}

li:hover
{
	transform:scale(1.2,1.2);
	color:white;
	background-color:black;
}
