@font-face {
	font-family: "somefont";
	src: url("../../fonts/somefont.woff2");
}

body, html {
	margin: 0;
	padding: 0;
	font-family: "somefont";
	background-color: #FFF;
	text-transform: uppercase;
	line-height: 50px;
	-webkit-font-smoothing: antialiased;
	height: 100vh;
}

h1, h2 {
	margin: 0;
}

a {
	text-decoration: none;
	color: inherit;
}

.nav {
	z-index: 999;
	background: #FFFFFF;
	height: 100px;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.name-holder {
	margin-left: 100px;
	display: inline-block;
	background-image: url('../../images/logo.png');
	background-size: contain;
	background-repeat: no-repeat;
	height: 100px;
	width: 450px;
}

.pull-right {
	width: 530px;
	height: 100px;
	float: right;
}

.menu {
	padding-left: 50px;
	margin-top: 25px;
	margin-right: 75px;
	width: 530px;
	float: right;
}

.menu li {
	display: inline-block;
	padding-left: 25px;
}

.menu a {
	padding-bottom: 15px;
	height: 45px;
	border-bottom: solid 1px rgba(0, 0, 0, 0);
	transition: all 0.3s ease;
}

#about a:hover{
	border-color: rgba(0, 0, 0, 1);
	padding: 0 0 10px 0;
}

#projects a:hover{
	border-color: rgba(0, 0, 0, 1);
	padding: 0 0 10px 0;
}

#careers a:hover{
	border-color: rgba(0, 0, 0, 1);
	padding: 0 0 10px 0;
}

#contact a:hover{
	border-color: rgba(0, 0, 0, 1);
	padding: 0 0 10px 0;
}

.torso {
	background-color: #F9F9F9;
	overflow: hidden;
	text-align: center;
	padding-bottom: 100px;
	width: 100%;
}

.torso a {
	text-decoration: underline;
}

.torso .title {
	margin: 70px auto 0 auto;
	width: 300px;
	text-align: center;
}

.torso p {
	text-transform: none;
	color: #828282;
	line-height: 30px;
	width: 600px;
	margin: 20px auto 0 auto;
}

.torso .copyright {
	margin-top: 70px;
	text-align: left;
}

.footer {
	position: relative;
	height: 100px;
	width: 100%;
	background: #2F3238;
	color: #949494;
	font-size: 0.9em;
	text-transform: none;
}

.footer .copyright {
	position: absolute;
	right: 20px;
	top: 15px;
}

.footer .signature {
	position: absolute;
	left: 20px;
	top: 15px;
}

.footer div {
	position: absolute;
	right: 20px;
	top: 45px;
}

.footer div #privacy {
	padding-right: 10px;
	border-right: solid 1px #949494;
}

.footer div #terms {
	padding-left: 8px;
}

.footer div a {
	color: #949494;
	transition: color 0.3s ease;
}

.footer div a:hover {
	color: #3498db;
}


@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes scale {
  0% { transform: scale(1); }
  100%   { transform: scale(1.1); }
}

@keyframes translate {
  0% { transform: translate(0, 0); }
  100%   { transform: translate(30px, 0); }
}