body {
	color: #ffffff;
}

.main {
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0F2027;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to left, #2C5364, #203A43, #0F2027);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to left, #2C5364, #203A43, #0F2027); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.title {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.title h1 {
	margin-bottom: 0;
}

.title img {
	width: 70px;
	height: 70px;
	border-radius: 35px;
	margin-right: 15px;
}

.title .position {
	font-weight: 100;
}

.block-about {
	font-weight: 100;
}

.block-about ul li a {
	background: transparent;
	padding: 3px 6px;
	color: #ffffff;
	text-decoration: none;
	transition: all .3s ease-in-out 0s;
	border-radius: 3px;
	font-weight: 400;
}

.block-about ul li a:hover,
.block-about ul li a:focus {
	background: #2C5364;
	text-decoration: none;
}

.block-skills span {
	padding: 8px;
	margin: 4px;
	line-height: 3.4rem;
	border-radius: 20px;
	font-weight: 100;
}

.block-skills span.frontend {
	border: 1px solid #ff00ff;
	color: #ff00ff;
}

.block-skills span.backend {
	border: 1px solid #00ffdb;
	color: #00ffdb;
}

.block-skills span.mobile {
	border: 1px solid #12ff00;
	color: #12ff00;
}

.block-skills span.adv {
	border: 1px solid #ffce00;
	color: #ffce00;
	white-space: nowrap;
}

ul.contacts {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
}

ul.contacts li a {
	width: 38px;
	height: 38px;
	display: block;
	margin-right: 17px;
}

ul.contacts li a img {
	width: 100%;
	height: 100%;
	border-radius: 5px;
	filter: grayscale(100%);
	opacity: .4;
	transition: all .2s ease-in-out 0s;
}

ul.contacts li a:hover img,
ul.contacts li a:focus img,
ul.contacts li a:active img {
	opacity: 1;
	filter: grayscale(0%);
}

