body {
	font-family: Quicksand, sans-serif;
}
#main-wrapper {
	width: 100%;
	height: 100%;
	min-width: 320px;
	max-width: 550px;
	min-height: 320px;
	max-height: 400px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	transform-style: preserve-3d;
}

.url {
	color: #900;
	text-decoration: none;
	font-size:32px;
	position:absolute;
	z-index:2;
	transition: transform 2s ease;
}

#url-resume {
	top: 50px;
	left: 5%;
}

#url-projects {
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	top: 0;
	width: 120px;
}

#url-blog {
	top:50px;
	right: 13%;
}

#title-wrapper {
	background: url("images/savas-logo.png") no-repeat center;
	width: 100%;
	height:300px;
	display:block;
	margin-left:auto;
	margin-right:auto;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

#title-text {
	color: #000;
	font-size: 48px;
	width:100%;
	text-align:center;
	position:relative;
	top:90px;
	font-weight:bold;
}

.icon {
	height:50px;
	width:50px;
	position:absolute;
	bottom: 20px;
}

.icon a:hover {
	border: 0 none;
}

.icon img {
	opacity:0.7;
	width:100%;
	height:100%;
}

#icon-github {
	left: 20%;
}

#icon-linkedin {
	right: 20%;
}

/*
	TODO: Use calculus to determine arc length and calculate
	transforms based on movement around an ellipse.
	For now, I'm just going to hard code them.
*/

#url-projects.orbit-clockwise {
	transform: rotate(10deg) translateX(10px) translateY(0px) rotate(-10deg);
}
#url-projects.orbit-counterclockwise {
	transform: rotate(-10deg) translateX(-10px) translateY(0px) rotate(10deg);
}

#url-resume.orbit-clockwise {
	transform: rotate(10deg) translateX(10px) translateY(-10px) rotate(-10deg);
}
#url-resume.orbit-counterclockwise {
	transform: rotate(-10deg) translateX(-10px) translateY(10px) rotate(10deg);
}

#url-blog.orbit-clockwise {
	transform: rotate(10deg) translateX(10px) translateY(10px) rotate(-10deg);
}
#url-blog.orbit-counterclockwise {
	transform: rotate(-10deg) translateX(-10px) translateY(-10px) rotate(10deg);
}

#icon-github.orbit-clockwise {
	transform: rotate(10deg) translateX(-10px) translateY(0px) rotate(-10deg);
}
#icon-github.orbit-counterclockwise {
	transform: rotate(-10deg) translateX(15px) translateY(10px) rotate(10deg);
}

#icon-linkedin.orbit-clockwise {
	transform: rotate(10deg) translateX(-15px) translateY(10px) rotate(-10deg);
}
#icon-linkedin.orbit-counterclockwise {
	transform: rotate(-10deg) translateX(10px) translateY(0px) rotate(10deg);
}