body {
	margin: 0;
	padding: 0;
}

* {
	box-sizing: border-box;
	user-select: none;
}

body {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	font-size: 1.25rem;
	font-family: sans-serif;
	line-height: 150%;
	text-shadow: 0 2px 2px #0a2a75;
	background-color: #200a77;
}

section {
	color: #fff;
	text-align: center;
}

div {
	height: 100%;
}

#left_article {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	padding: 40px;
}

#right_article {
	position: absolute;
	top: 420px;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	padding: 20px;
}

h1 {
	font-size: 1.75rem;
	margin: 0 0 0.75rem 0;
}

/* Pattern styles */
.container {
	display: table;
	width: 100%;
}

#left-half {
	background-color: #564D80;
	position: absolute;
	left: 0px;
	width: 60%;
	transition: all 0.2s;
}

#right-half {
	background-color: #44344F;
	position: absolute;
	right: 0px;
	width: 40%;
	transition: all 0.2s;
}

.HI {
	font-size: 80px;
	font-weight: bold;
}

.NameTitle {
	font-size: 0;
	text-align: right;
}

.NameTitle a{
	font-size: 40px;
}

.Description {
	font-size: 20px;
	text-align: right;
}

.left_pane_list {
	text-align: left;
}

h2 {
	text-align: left;
	font-size: 24px;
	margin: 30px 0px 0px 0px;
}

.heart {
	font-size: 80px;
	transition: all 0.2s;
}

.heart:hover {
	font-size: 90px;
}

#flag {
	opacity: 0.05;
	transition: all 0.2s;
}

.github_link {
	color: white;
	text-decoration: none;
	text-shadow: 0 3px 3px #2c2c2c;
	font-weight: bold;
}

.Name {
	text-shadow: 0 3px 3px #2c2c2c;
	font-weight: bold;
}

.center_div {
	display: flex;
	align-items: center;
	justify-content: center;
}

.socials {
	background-color: rgba(145, 145, 145, 0.486);
	border-radius: 20px;
	width: max-content;
	padding: 0 20px 0 20px;
}

.fa {
	font-size: 30px;
	width: 30px;
	text-align: center;
	text-decoration: none;
	transition: all 0.2s;
}

.fa:hover {
	opacity: 0.7;
}

.fa-twitter {
	color: #55acee;
}

.fa-reddit {
	color: #ff5700;
}

.line {
	height: 30px;
}

.name_project {
	left: 0;
	position: absolute;
	padding: 0 10px 0 10px;
}

.detail {
	right: 0;
	position: absolute;
	padding: 0 10px 0 10px;
	opacity: 0;
	white-space: nowrap;
	transition: all 0.2s;
	margin-right: 0px;
	font-size: 17px;
}

.projects {
	padding: 10px;
	font-size: 1.25rem;
	font-family: sans-serif;
	line-height: 150%;
	text-shadow: 0 2px 2px #0a2a75;
}

.title {
	font-size: 1.75rem;
	color: white;
	margin: 30px 0 0.45rem 0;
	text-align: left;
	margin-left: 20px;
	margin-bottom: -10px;
}

.wtree {
	margin-left: 20px;
}

.wtree li {
	list-style-type: none;
	margin: 10px 0 10px 10px;
	position: relative;
}

.wtree li:before {
	content: "";
	position: absolute;
	top: -10px;
	left: -20px;
	border-left: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	width: 20px;
	height: 15px;
}

.wtree li:after {
	position: absolute;
	content: "";
	top: 5px;
	left: -20px;
	border-left: 1px solid #ddd;
	border-top: 1px solid #ddd;
	width: 20px;
	height: 100%;
}

.wtree li:last-child:after {
	display: none;
}

.wtree li span {
	display: block;
	border: 1px solid #ddd;
	padding: 10px;
	color: #fff;
	text-decoration: none;
}

.wtree li span:hover,
.wtree li span:focus {
	background: #eee;
	color: #000;
	border: 1px solid #aaa;
}

.wtree li span:hover + ul li span,
.wtree li span:focus + ul li span {
	background: #eee;
	color: #000;
	border: 1px solid #aaa;
}

.wtree li span:hover + ul li:after,
.wtree li span:hover + ul li:before,
.wtree li span:focus + ul li:after,
.wtree li span:focus + ul li:before {
	border-color: #aaa;
}

.left_div {
	display: flex;
	align-items: center;
	justify-content: left;
}

.right_div {
	display: flex;
	align-items: center;
	justify-content: right;
}

.tooltip {
	position: relative;
	display: inline-block;
	border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
	visibility: hidden;
	padding: 5px 10px 5px 10px;
	width: max-content;
	background-color: rgba(0, 0, 0, 0.9);
	border: #fff;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	position: absolute;
	z-index: 1;
	bottom: 150%;
	left: 50%;
	margin-left: -60px;
}

.tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: black transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
}