body {
	font-family: 'Oxygen', sans-serif;
	font-weight: 400;
	color: white;
	text-align: center;
	text-transform: uppercase;
}

/* BACKGROUND */
#background {
	position: fixed;
	height: 100%;
	width: 100%;
	background-image: url(../img/background.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top right;
}

#darkLayer {
	position: fixed;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.3);
}

/* CONTENT */
#content {
	height: 100%;
	width: 100%;
	overflow: scroll;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* HEADER */
header {
	margin-top: 20px;
}

header h1 {
	font-size: 30px;
	letter-spacing: 5.7px;
}

header h2 {
	font-size: 16px;
	font-weight: 300;
}

/* MAIN */
main #WUC {
	font-size: 30px;
	font-weight: 700;
	text-transform: none;
}

main .skills {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 50px;
}

main .skills .skill {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 5px 10px;
}

main .skills .skill img {
	height: 70px;
	object-fit: contain;
	margin-bottom: 10px;
}

main .skills .skill p {
	font-size: 12px;
	font-weight: 300;
	text-transform: uppercase;
}

/* FOOTER */
footer {
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
	align-items: flex-end
}

footer a {
	color: white;
	font-size: 14px;
	text-decoration: none;
	text-transform: none;
}

footer a img {
	height: 24px;
	width: 24px;
	margin: 0 20px;
}

/* MEDIA QUERIES */
@media (max-width: 767px) {
	/* HEADER */
	header h1 {
		font-size: 24px;
	}
	
	header h2 {
		font-size: 14px;
	}
	
	/* MAIN */
	main #WUC {
		font-size: 22px;
	}
	
	main .skills {
		margin-top: 25px;
	}
	
	main .skills .skill img {
		height: 50px;
		margin-bottom: 5px;
	}
	
	main .skills .skill p {
		font-size: 8px;
	}
	
	/* FOOTER */
	footer a {
		font-size: 10px;
	}
	
	footer a img {
		height: 12px;
		width: 12px;
		margin: 0 10px;
	}	
}