html, body {
	padding: 0;
	margin: 0;
}
body {
	font-size: 18px;
	font-family: "Karla", -apple-system, BlinkMacSystemFont, 
	    "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", 
	    "Fira Sans", "Droid Sans", "Helvetica Neue", 
	    sans-serif;
}
section {
	padding: 50px 0 75px;
}
#static {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	padding: 0 2%;
	color: white;
}
#intro {
	height: 100%;
	min-height: 700px;
	padding: 0;
	color: white;
}
#intro h1 {
	/*text-align: center;*/
	font-size: 18vw;
	line-height: 0.8;
	letter-spacing: -1.5vw;
	margin-top: 5vh;
	display: inline-block;
	width: 100%;
}
.title {
	display: block;
}
.title:first-child {
	margin-left: 10%;
}
.title:nth-child(2) {
	margin-left: 5%;
}
video#bgvid { 
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: url(polina.jpg) no-repeat;
    background-size: cover; 
}
#logo {
	width: 60px;
	margin-top: 40px;
	margin-bottom: 10px;
}
#about .container {
	background-color: white;
	padding: 40px 40px 100px;
	border-radius: 8px;
}
#about h2 {
	font-size: 250%;
	letter-spacing: -2px;
	line-height: 1;
	margin: 0;
}
.lead {
	font-size: 130%;
	color: #999;
}
.larger {
	font-size: 160%;
}
#about .larger {
	margin-top: 20px;
	margin-bottom: 80px;
}
h5 {
	font-size: 100%;
	margin: 0;
}
#anton {
	float: left;
	margin-right: 15px;
}
.clear {
	clear: both;
}
.menu {
	list-style: none;
	padding: 0;
	text-transform: uppercase;
	font-size: 80%;
	letter-spacing: 3px;
	margin-top: 6vh;
}
.menu li {
	margin-bottom: 15px;
}
.container {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}
.btn {
	border: 2px solid black;
	padding: 0.8em 1em;
	text-align: center;
}
.btn:hover {
	color: white;
	background-color: black;
}
a {
	color: black;
}
a.btn {
	text-decoration: none;
	font-weight: bold;
}
hr {
	border: 0;
	border-top: 1px solid black;
}
.about-wrapper {
	position: relative;
}
hr.above {
	position: absolute;
	z-index: 2;
	left: 0;
	top: 20px;
	width: 100%;
}
.skills {
	font-size: 52px;
	font-weight: bold;
	letter-spacing: -0.1rem;
	text-align: center;
}
.skills span {
	display: inline-block;
	margin: 5px;
}
#skills {
	color: white;
}

.white {
	color: white;
}
h5.centered {
	width: 200px;
	margin: 0 auto 50px;
	border-bottom: 1px solid white;
	text-align: center;
	padding-bottom: 15px;
}
.portfolio-wrapper {
	margin: 15px 0 40px;
}
.portfolio-item {
	background-color: white;
	margin-right:1px;
	margin-bottom:1px;
	float: left;
	width: 33%;
	text-align: center;
	height: 200px;
	font-size: 16px;
	position: relative;
}
.portfolio-item h1 {
	letter-spacing: -0.1rem;
	margin-bottom: 0;
}
.portfolio-item strong {
	color: #999;
}
.portfolio-text {
	height: 120px;
	position: absolute;
	top: 50%;
	margin-top: -60px;
	width: 100%;
	display: none;
	color: white;
}
.portfolio-item img {
	width: 150px;
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
	   filter: grayscale(100%);
	   opacity: 1;
}
.portfolio-item:hover {
	background-color: transparent;
}
.portfolio-item:hover img {
	opacity: 0;
}
.portfolio-item:hover .portfolio-text {
	display: block;
}
.btn-white {
	border-color: white;
	color: white;
}
.btn-white:hover {
	background-color: white;
	color: black;
}
.btn-center {
	display: block;
	margin: 0 auto;
	width: 200px;
}
#mobile {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
}
#logo-mobile {
	margin: 15px;
	width: 40px;
}
#menu {
	float: right;
}
#menu strong {
	position: relative;
	top: -8px;
}
header a {
	color: white;
	text-decoration: none;
}
header a:hover {
	font-weight: bold;
}
.menu-mobile {
	display: none;
	position: absolute;
	top: 0px;
	left: 49px;
	padding: 25px;
	background-color: black;
	color: white;
	list-style: none;
	font-size: 18px;
	width: 40%;
}
#mobile:hover .menu-mobile {
	display: block;
}
@media (max-width: 1024px) {
	#static {
		display: none;
	}
	#mobile {
		display: block;
	}
}
@media (max-width: 800px) {

	#intro {
		min-height: 400px;
		height: auto;
	}
	#intro h1 {
		line-height: 1;
		margin-top: 50px;
		margin-left: 8%;
		font-size: 20vw;
	}
	#about .container {
		border-radius: 0;
	}
	#anton {
		float: right;
		width: 40%;
		margin-left: 10px; 
		margin-top: 10px;
	}
	.larger {
		font-size: 140%;
	}
	.portfolio-item {
		width: 100%;
		border-radius: 0 !important;
	}
	.btn {
		margin-left: auto;
		margin-right: auto;
		display: block;
		width: 50%;
	}
	
}