html,
body {
	margin: 0;
	padding: 0;
}

.background {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	z-index: 0;
}

.container {
	height: 100%;
	width: 100%;
	display: flex;
	position: fixed;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.title {
	font-family: "Exo 2", sans-serif;
	font-size: 28px;
	margin-bottom: 3px;
}

.subtitle {
	font-family: "Rajdhani", sans-serif;
	font-size: 15px;
	color: rgb(31, 31, 31);
}

.edu {
	font-family: "Rajdhani", sans-serif;
	font-size: 16px;
	color: rgb(31, 31, 31);
}

.social {
	display: flex;
	flex-direction: row;
	margin-top: 20px;
}

a.symbol {
	color: #888;
	font-size: 2rem;
	text-decoration: none;
	margin-right: 0.3rem;
}

a.symbol:hover {
	color: #000;
	font-size: 2rem;
	text-decoration: none;
	margin-right: 0.3rem;
}

.footer {
	font-family: "Exo 2", sans-serif;
	font-size: 14px;
	color: #888;
	margin-top: 20px;
}

.avatar img {
	width: 150px;
	border-radius: 150px;
}

.updates {
	font-family: "Exo 2", sans-serif;
	color: #888;
	margin-top: 10px;
	font-size: 15px;
}

.menu-item {
	font-weight: bold;
}

.menu-item:hover {
	color: black;
	cursor: pointer;
}

a.menu-item {
	text-decoration: none;
	color: inherit;
}

.updates-date {
	font-size: 10px;
}

.updates-list {
	overflow: hidden;
	margin-bottom: 15px;
}

.updates-list a:link {
	text-decoration: none;
	color: #888;
}

.updates-list a:visited {
	text-decoration: none;
	color: rgb(71, 71, 71);
}

.updates-list a:hover {
	text-decoration: underline;
	color: black;
}

.hidden {
	display: none;
}

.footer-links {
	font-size: 12px;
}

.footer-links a {
	text-decoration: none;
	color: #888;
}

.footer-links a:hover {
	text-decoration: none;
	color: #000;
}

hr {
	border: 0;
	height: 1px;
	background: #333;
	background-image: linear-gradient(to right, #ccc, #333, #ccc);
}

.fade-in {
	animation: fadeIn ease 1.5s;
	-webkit-animation: fadeIn ease 1.5s;
	-moz-animation: fadeIn ease 1.5s;
	-o-animation: fadeIn ease 1.5s;
	-ms-animation: fadeIn ease 1.5s;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-moz-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-o-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
