.main {
	width: 80%;
	height: 50%;
	border: solid 1px black;
	text-align: center;
	position: absolute;
	left: 50%;
	top: 15%;
	transform: translateX(-50%);
	border-radius: 15px;
	background-color: #0078db;
	color: white;
	font-size: 75px;
	place-content: center;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
	user-select: none;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
}
body {
	margin: 0px;
	padding: 0px;
	place-content: center;
	text-align: center;
	width: 100%;
	background-color: #efefef;
	height: 100%;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.navbar {
	width: 100%;
	height: 50px;
	top: 0;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	background-color: white;
	padding-left: 50px;
	place-content: center;
	cursor: pointer;
	font-size: 18px;
}
.navbar > span:nth-child(1) {
	left: 50%;
	transform: translateX(-50%);
	position: inherit;
}
.navbar > span:nth-child(2) {
	float: left;
	position: relative;
}
.projectList {
	float: left;
	border-radius: 50px;
	height: 50px;
	width: 50px;
	left: 50px;
	position: relative;
	margin-top: 100px;
	background-color: #0078db;
	transition: all 0.3s ease-in-out;
}
.projectList:hover {
	border-radius: 15px;
	width: calc(100% - 100px);
	height: 75px;
}
.text {
	opacity: 0;
	transform: translateY(125%);
	transition: all 0.3s ease-in-out;
}
.hint {
	opacity: 1;
	float: left;

	transform: translate(150%, 100%);
	transition: all 0.3s ease-in-out;
}
.projectList:hover .text {
	opacity: 1;

	transition: all 0.3s ease-in-out;
}
.projectList:hover .hint {
	opacity: 0;
	transition: all 0.3s ease-in-out;
}
span:nth-child(3) {
	float: right;
	position: relative;
	transform: translateX(-60px);
}
span:nth-child(3) > a {
	color: black;
}
