
body {
	font-family: 'Nunito', sans-serif;
}
#loading {
z-index: 999;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: white;
}
.title-container {
	padding-top: 50px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.title {
	font-size: 100px;
	color: #ccc;
	padding: 0 15px
}
.main-title {
	color: orange;
	font-family: 'Montserrat', sans-serif;
}
.subtitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
}
.subsubtitle {
	margin: 10vw 0 5vw 0;
	font-family: 'Montserrat', sans-serif;
}
.showcase-container {
	display: flex;
justify-content: space-around;
align-items: center;
perspective: 500px;
}
.showcase-container div {
	color: white;
	font-size: 3vw;
	display: block;
	background: #ccc;
	line-height: 20vw;
	width: 20vw;
	text-align: center;
	transition: all .15s linear;
	cursor: pointer;
	border-radius: 50%;
	box-shadow: inset 3px 3px #00000033 , inset -3px -3px #ffffff33;
	font-family: 'Montserrat', sans-serif;
}
@media (max-width: 640px) {
	.title {
		font-size: 70px;
		color: #ccc;
	}
	.showcase-container div {
  	line-height: 25vw;
  	width: 25vw;
		font-size: 3.5vw;
	}
	.subtitle {
		font-size: 15px;
	}
}
.showcase-container div:hover {
	box-shadow: inset -3px -3px #00000033 , inset 3px 3px #ffffff33;
}
.Back-End .back-btn , .showcase-container div:nth-child(1):hover {
	background: #FED766aa;
}
.Full-Stack .back-btn , .showcase-container div:nth-child(2):hover {
	background: #2AB7CAaa;
}
.Front-End .back-btn , .showcase-container div:nth-child(3):hover {
	background: #FE4A49aa;
}
.page .nav-menu {
display: flex;
align-items: center;
background: #ddd;
	box-shadow: 0 3px 3px #00000033;
	position: relative;
}
.page-title {
	font-size: 25px;
	color: white;
	flex: 1;
	padding-left: 20px;
	height: 100%;
	font-family: 'Montserrat', sans-serif;
}
.back-btn {
	box-shadow: inset -3px -3px #00000033 , inset 3px 3px #ffffff33 , 3px 0 3px #00000033;
	background: #ccc;
	width: 50px;
	height: 50px;
	padding: 10px 20px;
	cursor: pointer;
	transition: all .15s linear;
}
.back-btn:hover {
	box-shadow: inset -3px -3px #00000033 , inset 3px 3px #ffffff33 , 5px 0 3px #00000033;
}
.carousel-container {
	margin: 0 50px;
}
.project {
	padding: 50px 0;
}
.project:nth-child(even) {
	background: #fafafa;
}
.project:nth-child(odd) {
	background: #f0f0f0;
}
.project-title {
	margin: 0;
	text-align: center;
	color: #777;
}
.aditional-info {
	color: #777;
	width: 80%;
	margin: 0 10% 50px 10%;
}
.aditional-info b {
	color: #333;
}