* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
	line-height: 1.3em;
}

body {
	width: 100%;
	padding-top: 100vh;
}

section {
	width: 100%;
	overflow: hidden;
}

section h2 {
	font-size: 4vw;
	font-family: 'Playfair Display', serif;
}

section .section-container {
	padding: 3vw 2vw;
	position: relative;
}

span.bold {
	font-weight: bold;
}

a {
	text-decoration: none;
	color: inherit;
}

li {
	list-style: none;
}

.infinite {
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
}

.clear {
	clear: both;
}

.italic {
	font-style: italic;
}

.delayed {
	animation-delay:300ms;
	-moz-animation-delay:300ms;
	-webkit-animation-delay:300ms;
}

/* ----------- Home ----------- */

header {
	width: 100%;
	position: absolute;
	top: 0;
	text-align: right;
	z-index: 10;
}

#home {
	z-index: -1;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	background: rgb(4,20,41);
	background: radial-gradient(circle, rgba(2,10,22,1) 15%, rgba(4,20,41,1) 100%);
}

/*
#me {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-image: url('../img/me.png');
	background-position: bottom -8vh right -18vw;
	background-size: 70vh;
	background-repeat: no-repeat;
	opacity: 0.5;
	z-index: 1;
}
*/

#title {
	position: absolute;
	top: 35vh;
	left: 50vw;
	width: 50%;
	animation-delay: 0.5s;
	animation-duration: 1.5s;
	z-index: 2;
}

#title h1 {
	font-size: 3.5vw;
	color: #ddd;
}

#title h2 {
	font-size: 2vw;
	color: #aaa;
	position: relative;
	left: 1vw;
	font-weight: normal;
}

#logo {
	position: absolute;
	left: 3vw;
	top: 2vw;
	display: inline-block;
}

#logo-container {
	padding: 10px;
	width: 60px;
	height: 60px;
	background-color: rgba(255,255,255,0.7);
	border-radius: 50%;
	display: inline-block;
}

#logo img {
	position: relative;
	bottom: 8%;
}

#logo-name {
	margin-left: 10px;
	display: inline-block;
	text-align: left;
	text-transform: capitalize;
	color: #aaa;
}

#logo-name h3 {
	font-size: 18px;
}

nav ul {
	display: inline-block;
	position: absolute;
	right: 3vw;
	top: 2vw;
}

nav ul li {
	display: inline-block;
	margin: 0 0.5vw;
}

nav ul li a {
	position: relative;
	display: inline-block;
	padding: 10px;
	text-transform: capitalize;
	font-family: 'Playfair Display', serif;
	color: #aaa;
}

nav ul li a:hover {
	color: #fff;
}

nav ul li a:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background-color: #fff;
	visibility: hidden;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

nav ul li a:hover:before {
	visibility: visible;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

#hidden-menu-icon, #hidden-menu {
	display: none;
}

/* ----------- About ----------- */

#about {
	padding: 100px 20vw;
	background-color: #fff;
}

#about .section-container {
	text-align: center;
	border-top: solid 4px #f5f5f5;
}

#about h2 {
	color: #555;
	padding-bottom: 20px;
	position: relative;
	left: 20px;
}

#avatar {
	display: inline-block;
	position: absolute;
	left: 2vw;
	top: 25%;
	border-radius: 50%;
	width: 12vw;
	height: 12vw;
	background-image: url('../img/avatar.jpg');
	background-position: top;
	background-size: 130%;
	background-repeat: no-repeat;
	vertical-align: middle;
}

#description {
	text-align: left;
	margin-left: 15vw;
	display: inline-block;
	vertical-align: middle;
	padding: 30px;
}

#description h3 {
	font-size: 32px;
	color: #333;
}

#description p {
	font-size: 18px;
	color: #555;
}

#cv {
	overflow: hidden;
	position: relative;
	display: inline-block;
	padding: 20px 40px;
	padding-left: 60px;
	border-radius: 40px;
	border: solid 2px #eee;
	color: #aaa;
	min-width: 260px;
	min-height: 64px;
	background-image: url('../img/cv.png');
	background-size: 30px;
	background-position: 20px center;
	background-repeat: no-repeat;
	cursor: pointer !important;
	transition: border-color 200ms, color 200ms;
}

#cv:hover, #cv:focus {
	border-color: #ccc;
	color: #888;
}

#cv > a {
	position: absolute;
	top: auto;
	left: auto;
	cursor: pointer;
}

#choice {
	display: none;
	position: absolute;
	text-align: center;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #eee;
}

#choice a {
	display: inline-block;
	width: 40%;
	height: 85%;
	padding: 15px;
	margin: 4px 0;
	border-radius: 3px;
	color: #555;
	background-color: #eee;
	cursor: pointer;
	opacity: 0.8;
	transition: background-color 200ms;
}

#choice a:hover, #choice a:focus {
	background-color: #fff;
}

/* ----------- Experience ----------- */

#experience {
	padding: 100px 5vw;
	background-color: #912150;
	position: relative;
}

#experience h2 {
	color: #eee;
	text-align: center;
}

#experience .section-container {
	padding: 3vw 0;
}

#udine {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url("../img/udine.jpg");
	opacity: 0.15;
	background-attachment: fixed;
}

#experience .container a {
	padding-left: 25px;
	background-image: url('../img/goto.png');
	background-size: 15px;
	background-position: 5px center;
	background-repeat: no-repeat;
}

/* ----------- Skills ----------- */

#skills {
	padding: 100px 20vw 0 20vw;
	background-color: #fff;
}

#skills .section-container {
	padding: 3vw 0;
	position: relative;
	text-align: center;
}

#skills h2 {
	color: #333;
	text-align: center;
	padding-bottom: 20px;
}

.skill-container {
	display: inline-block;
	margin: 0 1.5vw 3vw 1.5vw;
}

.skill-name {
	overflow: hidden;
	position: relative;
	margin-top: 10px;
	padding: 10px;
	font-weight: bold;
	font-size: 18px;
	text-align: center;
	color: #333;
	background-color: #f5f5f5;
	border-radius: 20px;
}

.level-indicator {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	border-bottom-right-radius: 10px;
	border-top-right-radius: 10px;
	background: rgba(0,0,0,0.1);
	background: linear-gradient(-90deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.3) 100%);
}

.skill-container .hexagon {
	width: 150px;
    height: 170px;
    position: relative;
    background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	-webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.skill-container:nth-of-type(1) .hexagon {
	background-image: url('../img/skills/html.png');
}

.skill-container:nth-of-type(1) .level-indicator {
	width: 90%;
}

.skill-container:nth-of-type(2) .hexagon {
	background-image: url('../img/skills/css.png');
}

.skill-container:nth-of-type(2) .level-indicator {
	width: 85%;
}

.skill-container:nth-of-type(3) .hexagon {
	background-image: url('../img/skills/js.png');
}

.skill-container:nth-of-type(3) .level-indicator {
	width: 90%;
}

.skill-container:nth-of-type(4) .hexagon {
	background-color: #ddd;
	background-image: url('../img/skills/flutter.png');
	background-size: 50%;
}

.skill-container:nth-of-type(4) .level-indicator {
	width: 50%;
}

.skill-container:nth-of-type(5) .hexagon {
	background-color: #5897c7;
	background-image: url('../img/skills/react.png');
	background-size: 80%;
}

.skill-container:nth-of-type(5) .level-indicator {
	width: 60%;
}

.skill-container:nth-of-type(6) .hexagon {
	background-color: #ddd;
	background-image: url('../img/skills/angular.png');
	background-size: 80%;
}

.skill-container:nth-of-type(6) .level-indicator {
	width: 60%;
}

.skill-container:nth-of-type(7) .hexagon {
	background-color: #ddd;
	background-image: url('../img/skills/vue.png');
	background-size: 60%;
	background-position: center;
}

.skill-container:nth-of-type(7) .level-indicator {
	width: 60%;
}

.skill-container:nth-of-type(8) .hexagon {
	background-color: #14a1cb;
	background-image: url('../img/skills/threejs.png');
	background-size: 70%;
	background-position: 40% 60%;
}

.skill-container:nth-of-type(8) .level-indicator {
	width: 70%;
}

.skill-container:nth-of-type(9) .hexagon {
	background-color: #ddd;
	background-image: url('../img/skills/php.png');
	background-size: 80%;
}

.skill-container:nth-of-type(9) .level-indicator {
	width: 40%;
}

.skill-container:nth-of-type(10) .hexagon {
	background-color: #6b83c6;
	background-image: url('../img/skills/sql.png');
	background-size: 80%;
}

.skill-container:nth-of-type(10) .level-indicator {
	width: 70%;
}

.skill-container:nth-of-type(11) .hexagon {
	background-color: #ddd;
	background-image: url('../img/skills/ps.png');
	background-size: 60%;
}

.skill-container:nth-of-type(11) .level-indicator {
	width: 70%;
}

.skill-container:nth-of-type(12) .hexagon {
	background-color: #ddd;
	background-image: url('../img/skills/ai.png');
	background-size: 60%;
}

.skill-container:nth-of-type(12) .level-indicator {
	width: 70%;
}

/* ----------- Works ----------- */

#works {
	padding: 100px 15vw;
	padding-top: 300px;
	background-color: #f5f5f5;
	position: relative;
}

#works h2 {
	position: relative;
	left: 30px;
}

#works .triangle {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
    height: 0;
    border-bottom: 30vh solid transparent;
    border-left: 100vw solid #fff;
}

.square {
	width: 31%;
	height: 11vw;
	background-color: #ddd;
	display: inline-block;
	margin: 0 4px 40px 4px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.overlay {
	width: 100%;
	height: 100%;
	opacity: 0;
	background-color: rgba(0,0,0,0.4);
	text-align: center;
	padding-top: 22%;
	cursor: pointer;
	transition: opacity 200ms;
}

.square:hover .overlay {
	opacity: 0.8;
}

#arch {
	background-image: url('../img/works/arch/02.jpg');
}

#residence {
	background-image: url('../img/works/residence/01.jpg');
}

#leda-madera {
	background-image: url('../img/works/leda-madera/02.jpg');
}

#ring {
	background-image: url('../img/works/ring/01.jpg');
}

#freeshape {
	background-image: url('../img/works/freeshape/01.JPG');
}

#datris {
	background-image: url('../img/works/datris/01.JPG');
}

#factory {
	background-image: url('../img/works/3dd/01.JPG');
}

#threejs {
	background-image: url('../img/works/threejs/01.JPG');
}

#memory {
	background-image: url('../img/works/memory/01.JPG');
}

.work-name {
	padding: 5px;
	padding-left: 15px;
	background-color: #fff;
	color: #555;
	box-shadow: 1px 3px 3px 1px #ddd;
	cursor: pointer;
}

#bubble {
	display: none;
	position: fixed;
	top: -7vw;
	right: -7vw;
	width: 14vw;
	height: 14vw;
	border-radius: 50%;
	z-index: 49;
	background: linear-gradient(48deg, rgba(145,33,80,1) 0%, rgba(94,19,51,1) 35%, rgba(27,6,15,1) 50%);
	transform-origin: top right;
	transition: transform 300ms;
	transition-timing-function: ease-out;
	transform: scale(0);
}

#bubble div {
	width: 4vw;
	height: 4vw;
	position: absolute;
	top: 5vw;
	left: 5vw;
	background-color: #ddd;
	transform: rotate(45deg);
	transform-origin: center;
}

.details {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-repeat: no-repeat;
	background-position: fixed;
	background-size: cover;
	z-index: 30;
	overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */
}

.details::-webkit-scrollbar { 
    width: 0;
    height: 0;
}

#close {
	display: none;
	position: fixed;
	right: 2vw;
	top: 2vw;
	width: 3vw;
	height: 3vw;
	font-size: 3vw;
	border: none;
	background-color: transparent;
	cursor: pointer;
	z-index: 50;
}

#close hr {
	display: inherit;
	border-color: #ddd;
	transform-origin: center;
	transition: transform 200ms;
	transition-delay: 300ms;
}

#close hr:nth-child(1) {
	transform: rotate(40deg);
}

#close hr:nth-child(2) {
	transform: rotate(-40deg);
	position: relative;
	bottom: 2px;
}

#close:hover hr:nth-child(1) {
	transform: rotate(-40deg);
}

#close:hover hr:nth-child(2) {
	transform: rotate(40deg);
}

#close:hover + #bubble {
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
}

.details-container {
	height: 100vh;
	overflow-y: scroll;
	color: #888;
	padding: 5vw 12vw;
	background-color: rgba(20,20,20,0.95);
	scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */
}

.details-container::-webkit-scrollbar { 
    width: 0;
    height: 0;
}

.explaination {
	margin-right: 52%;
	position: absolute;
	margin-bottom: 40px;
}

.details h3 {
	font-size: 36px;
	color: #ddd;
	margin-bottom: 10px;
}

.details p {
	font-size: 16px;
	margin-bottom: 10px;
}

.images {
	width: 48%;
	margin-left: 52%;
	z-index: 40;
}

.details img, .details video {
	width: 100%;
	margin-bottom: 2vw;
	box-shadow: 2px 5px 8px 1px #000;
}

.website-link {
	color: #ddd;
	display: inline-block;
	margin: 40px 0;
	padding: 20px 30px;
	border: solid 2px #888;
	border-radius: 40px;
	opacity: 0.8;
	transition: opacity 200ms;
}

.website-link:hover {
	opacity: 1;
}

.technologies li {
	padding: 5px 10px;
	margin-bottom: 5px;
	background-color: rgba(120,120,120,0.4);
}

/* ----------- Arrows ----------- */

.arrow {
	cursor: pointer;
	height: 120px;
	position: fixed;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	transition: transform 0.1s;
	width: 80px;
}

.right-arrow {
	right: 1vw;
}

.left-arrow {
	left: 6vw;
}

.arrow-top, .arrow-bottom {
	background-color: #666;
	height: 4px;
	left: -5px;
	position: absolute;
	top: 50%;
	width: 100%;
}

.left-arrow .arrow-top, .left-arrow .arrow-bottom {
	right: -5px;
	top: 50%;
	width: 100%;
}

.arrow-top:after, .arrow-bottom:after {
	background-color: #fff;
	content: "";
	height: 100%;
	position: absolute;
	top: 0;
	transition: all 0.15s;
}

.arrow-top {
	transform: rotate(45deg);
	transform-origin: bottom right;
}

.left-arrow .arrow-top {
	transform: rotate(-45deg);
	transform-origin: bottom left;
}

.arrow-top:after {
	left: 100%;
	right: 0;
	transition-delay: 0s;
}

.arrow-bottom {
	transform: rotate(-45deg);
	transform-origin: top right;
}

.left-arrow .arrow-bottom {
	transform-origin: top left;
	transform: rotate(45deg);
}

.arrow-bottom:after {
	left: 0;
	right: 100%;
	transition-delay: 0.15s;
}

.arrow-bottom:after {
	left: 0;
	right: 100%;
	transition-delay: 0.15s;
}

.arrow:hover .arrow-top:after {
	left: 0;
	transition-delay: 0.15s;
}

.left-arrow:hover .arrow-top:after {
	right: 0;
	transition-delay: 0s;
}

.arrow:hover .arrow-bottom:after {
	right: 0;
	transition-delay: 0s;
}

.left-arrow:hover .arrow-bottom:after {
	left: 0;
	transition-delay: 0.15s;
}

.arrow:active {
	transform: translateX(-50%) translateY(-50%) scale(0.9);
}

/* ----------- Contacts ----------- */

#contacts {
	padding: 100px 25vw;
	background-color: #fff;
	position: relative;
	/*
	background-image: url('../img/me3.png');
	background-position: bottom 25px right 9.5vw;
	background-size: 15.5vw;
	background-repeat: no-repeat;
	*/
}

#contacts h2 {
	border-bottom: none;
	text-align: left;
}

#rectangle {
	position: absolute;
	display: inline;
	top: -20px;
	left: 49%;
	width: 0;
	height: 0;
	border: solid 20px #f5f5f5;
	transform: rotate(45deg);
}

#contacts .section-container {
	padding: 0;
	padding-top: 40px;
}

form label {
	display: block;
	margin-bottom: 15px;
	font-weight: bold;
	font-size: 18px;
	color: #888;
}

form input, form textarea {
	font-size: 16px;
	display: block;
	width: 100%;
	margin: 5px 0;
	background-color: #f5f5f5;
	border: none;
	padding: 15px 20px;
	border-radius: 5px;
	border: solid 2px #fff;
}

form input:focus, form textarea:focus {
	border-color: #bbb;
}

form textarea {
	min-height: 200px;
}

#submit {
	border: none;
	cursor: pointer;
	font-weight: bold;
	color: #666;
	margin-top: 30px;
	width: 150px;
	box-shadow: 1px 3px 3px 1px #ddd;
	transition: color 200ms, background-color 200ms;
}

#submit:hover, #submit:active {
	color: #f5f5f5;
	background-color: #555;
}

.red-star {
	color: red;
	position: relative;
}

.validate {
	float: right;
	color: red;
	font-weight: normal;
	font-size: 12px;
}

/* ----------- Footer ----------- */

footer {
	background-color: #222;
	padding: 80px;
	position: relative;
}

#links {
	color: #eee;
}

#links div, #links p {
	display: inline-block;
}

#credits {
	position: absolute;
	bottom: 80px;
	right: 80px;
	text-align: right;
}

#links a {
	display: inline-block;
	vertical-align: middle;
}

#social img {
	width: 30px;
	height: auto;
	margin-right: 10px;
	vertical-align: middle;
}

#social li {
	padding: 5px;
}

#social h3 {
	display: inline-block;
	color: #ddd;
	padding-bottom: 10px;
	padding-right: 15px;
	margin-bottom: 20px;
	border-bottom: solid 1px #888;
}

#credits img {
	width: 30px;
	height: auto;
	display: inline-block;
	position: relative;
	top: 2px;
	margin-left: 5px;
}

#links #icons8 {
	margin-bottom: 30px;
	padding-bottom: 10px;
	border-bottom: solid 1px #888;
}

/* ----------- Timeline ----------- */

.timeline h4 {
	font-size: 24px;
	color: #ddd;
	margin-bottom: 20px;
	position: absolute;
	top: 8px;
}

.left h4 {
	right: -130px;
}

.right h4 {
	left: -130px;
}

.timeline p {
	font-size: 18px;
	color: #555;
	margin-left: 50px;
}

.timeline img {
	position: absolute;
	width: 30px;
}

/* The actual timeline (the vertical ruler) */
.timeline {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
	content: '';
	position: absolute;
	width: 6px;
	background-color: rgba(255,255,255,0.5);;
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -3px;
}

/* Container around content */
.container {
	padding: 10px 40px;
	position: relative;
	background-color: inherit;
	width: 50%;
}

/* The circles on the timeline */
.container::after {
	content: '';
	position: absolute;
	width: 25px;
	height: 25px;
	right: -17px;
	background-color: white;
	border: 4px solid #d45b8d;
	top: 15px;
	border-radius: 50%;
	z-index: 1;
}

/* Place the container to the left */
.left {
	left: 0;
}

/* Place the container to the right */
.right {
	left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
	content: " ";
	height: 0;
	position: absolute;
	top: 22px;
	width: 0;
	z-index: 1;
	right: 30px;
	border: medium solid rgba(255,255,255,0.8);
	border-width: 10px 0 10px 10px;
	border-color: transparent transparent transparent rgba(255,255,255,0.8);
}

/* Add arrows to the right container (pointing left) */
.right::before {
	content: " ";
	height: 0;
	position: absolute;
	top: 22px;
	width: 0;
	z-index: 1;
	left: 30px;
	border: medium solid rgba(255,255,255,0.8);
	border-width: 10px 10px 10px 0;
	border-color: transparent rgba(255,255,255,0.8) transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
	left: -16px;
}

/* The actual content */
.content {
	padding: 20px 30px;
	background-color: rgba(255,255,255,0.8);
	position: relative;
	border-radius: 6px;
	box-shadow: 5px 2px 8px 1px rgba(0,0,0,0.3);
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 700px) {
/* Place the timelime to the left */
	.timeline::after {
		left: 31px;
	}

/* Full-width containers */
	.container {
		width: 100%;
		padding-left: 70px;
		padding-right: 25px;
	}

	.content {
		background-color: rgba(255,255,255,0.7);
	}

	/* Make sure that all arrows are pointing leftwards */
	.container::before {
		left: 60px;
		border: medium solid white;
		border-width: 10px 10px 10px 0;
		border-color: transparent rgba(255,255,255,0.6) transparent transparent;
	}

	/* Make sure all circles are at the same spot */
	.left::after, .right::after {
		left: 15px;
	}

	/* Make all right containers behave like the left ones */
	.right {
		left: 0%;
	}
}

/* ---------- Laptop ----------- */
@media screen and (max-width: 1400px) {

.explaination {
	position: relative;
	width: 100%;
	margin: 0;
}

.images {
	position: relative;
	width: 100%;
	margin: 0;
}

.images img {
	display: inline-block;
}

}

/* ---------- Mobile ----------- */
@media screen and (max-width: 700px) {

#about, #experience, #skills, #works, #contacts {
	padding: 50px 5vw;
}

#cv > a {
	top: 20px;
	left: 30%;
}

section .section-container {
	padding: 0;
	padding-top: 50px;
}

section h2 {
	font-size: 36px;
}

nav ul {
	display: none;
}

#hidden-menu-icon {
	position: fixed;
	top: 30px;
	right: 30px;
	width: 30px;
	display: block;
	cursor: pointer;
	z-index: 40;
}

#hidden-menu-icon hr {
	margin-bottom: 5px;
	position: relative;
	transition: transform 200ms;
}

#hidden-menu {
	text-align: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	text-align: center;
	padding: 22vh 30px;
	color: #ddd;
	background-color: rgb(4,20,41);
}

#hidden-menu a {
	display: inline-block;
	width: 60%;
	color: #ddd;
	font-size: 18px;
	margin: 10px 0;
	padding: 10px;
	border: solid 1px #ddd;
	border-radius: 20px;
}

#home {
	background: radial-gradient(circle, rgba(2,10,22,1) 0%, rgba(4,20,41,1) 60%);
}

/*
#me {
	background-image: url('../img/me.png');
	background-position: bottom right -70vw;
	background-blend-mode: overlay;
	background-size: cover;
	background-repeat: no-repeat;
}
*/

#title {
	top: 35vh;
	left: 10vw;
	display: block;
	width: 100%;
}

#title h1 {
	font-size: 34px;
}

#title h2 {
	font-size: 22px;
}

#logo {
	display: none;
}

#avatar {
	position: relative;
	left: auto;
	top: auto;
	width: 40vw;
	height: 40vw;
}

#description {
	margin-left: 0;
	padding: 20px;
}

#description h3 {
	font-size: 24px;
}

#description p {
	font-size: 14px;
}

#cv {
	width: 100%;
	display: block;
	text-align: center;
}

.square {
	width: 100%;
	height: 22vh;
	margin-bottom: 6vh;
}

#close {
	width: 5vh;
	height: 5vh;
	right: 5vw;
	top: 5vw;
}

.arrow {
	display: none;
}

.details-container {
	padding: 15vw 6vw;
}

#experience h2 {
	margin-bottom: 30px;
}

.timeline h4 {
	color: #333;
	font-size: 18px;
	position: relative;
}

.left h4 {
	right: auto;
}

.right h4 {
	left: auto;
}

.timeline p {
	color: #333;
	font-size: 14px;
	margin-left: 0;
}

.timeline img {
	position: relative;
	width: 20px;
}

.container .content {
	padding: 15px;
}

.skill-container {
	margin-bottom: 4vh;
}

.skill-container .hexagon {
	width: 85px;
	height: 95px;
}

.skill-name {
	font-size: 12px;
}

#works .triangle {
	border-bottom-width: 15vh; 
}

#contacts {
	background-image: none;
}

#contacts #rectangle {
	left: 45%;
}

form label {
	font-size: 16px;
}

footer {
	padding: 50px 5vw;
	text-align: center;
}

#credits {
	position: static;
	bottom: auto;
	right: auto;
	text-align: left;
	line-height: 1.8em;
}

#social {
	text-align: left;
	margin-bottom: 30px;
}

#social h3 {
	display: block;
}

#links #icons8 {
	margin-top: 10px;
	margin-bottom: 40px;
	border-top: solid 1px #888;
	position: relative;
	padding: 20px 0 20px 45px;
}

#icons8 img {
	position: absolute;
	left: 0;
	top: 15px;
}

}