
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body{
	height: 100%;
	background: hsla(39,100%,96%,1.00);
	font-family: sans-serif;
	overflow: hidden;
} 

::-webkit-scrollbar {
    display: none;
}

.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.se-pre-con {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: white;
	background:url("../img/leaf.gif")center no-repeat hsla(39,100%,96%,1.00);
	background-size: 30vmin;
}

.menu{
	position: fixed;
	right: 5%;
	top: 7%;
	font-family: sans-serif;
	font-size: 3vmin;
	font-weight: 700;
	text-transform: lowercase;
	color: black;
	text-decoration: none;
	cursor: pointer;
	padding: 0;
	z-index: 1000;
}

.menu:hover{
	text-decoration: underline;
	color: hsla(190,42%,53%,1.00);
}

.overlay {
  	height: 0%;
  	width: 100%;
  	position: fixed;
  	z-index: 1000;
 	top: 0;
  	left: 0;
  	background-color:  hsla(39,100%,96%,1.00);
  	overflow-x: hidden;
  	transition: 0.5s;
}

.overlay-content {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.overlay-content a {
  	text-decoration: none;
  	font-size: 5vmin;
	text-transform: lowercase;
	color: black;
	font-weight: 700;
  	display: block;
	margin-bottom: 3vmin;
}

.overlay-content a:hover, .overlay a:focus {
  	color: hsla(190,42%,53%,1.00);
	text-decoration: underline;
}

.overlay .closebtn {
  	position: absolute;
	top: 7%;
	right: 5%;
	font-family: sans-serif;
 	font-size: 3vmin;
	text-transform: lowercase;
	font-weight: 700;
	color: black;
	text-decoration: none;
}

.personal{
	z-index: 100;
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 7%;
}

.personal a{
	font-size: 2.3vmin;
	font-weight: 700;
	color: black;
	text-decoration: none;
	text-transform: lowercase;
	margin-left: 2vmin;
	margin-right: 2vmin;
}

.personal a:hover{
	color: hsla(190,42%,53%,1.00);
	text-decoration: underline;
}

.header{
	font-family: "Noto Serif", serif;
	font-style: italic;
	font-weight: 700;
	font-size: 4vmin;
	color: hsla(190,42%,53%,1.00);
	z-index: 1000;
	position: fixed;
	left: 5%;
	top: 7%;
}

.next{
	bottom: 7%;
	right: 5%;
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-decoration: none;
	z-index: 1000;
}

.next h2{
	font-family: sans-serif;
	text-transform: lowercase;
	font-weight: 700;
	font-size: 3vmin;
	color: black;
}

.arrow{
	font-size: 8vmin;
	color: black;
	margin-bottom: -2vmin;
}

.next:hover h2{
	color: hsla(190,42%,53%,1.00);
	text-decoration: underline;
}

.next:hover .arrow{
	color: hsla(190,42%,53%,1.00);
}

.section1{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.back{
	bottom: 7%;
	left: 5%;
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-decoration: none;
	z-index: 1000;
}

.back h2{
	font-family: sans-serif;
	text-transform: lowercase;
	font-weight: 700;
	font-size: 3vmin;
	color: black;
}

.back:hover h2{
	color: hsla(190,42%,53%,1.00);
	text-decoration: underline;
}

.back:hover .arrow{
	color: hsla(190,42%,53%,1.00);
}

.hover{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.hovertext{
	text-align: center;
	position: relative;
	bottom: 18%;
	font-family: "Noto Serif", serif;
	font-weight: 700;
	font-style: italic;
	font-size: 2.2vmin;
}

.clicktext{
	text-align: center;
	position: relative;
	bottom: 25%;
	font-family: "Noto Serif", serif;
	font-weight: 700;
	font-style: italic;
	font-size: 2.2vmin;
	display: none;
}

.image{
	width: 45vmin;
	opacity: 1;
	transition: 0.5s ease;
	position: fixed;
}

.imagetimmy{
	width: 60vmin;
	opacity: 1;
	transition: 0.5s ease;
	position: fixed;
}

.text{
	opacity: 0;
	transition: 0.5s ease;
	width: 120vmin;
	font-size: 1.8vmin;
	text-align: justify;
	font-weight: 400;
	font-family: "Noto Serif", serif;
	z-index: 1;
}

.welcometext{
	width: 120vmin;
	font-size: 1.8vmin;
	text-align: justify;
	font-weight: 400;
	font-family: "Noto Serif", serif;
	z-index: 1;
}

.navigate{
	position: absolute;
	bottom: 7%;
	right: 15%;
	font-size: 2vmin;
	font-family: "Noto Serif", serif;
	font-weight: 700;
	font-style: italic;
}
	
.image{
        -webkit-animation: action 1.5s infinite  alternate;
        animation: action 1.5s infinite  alternate;
    }
    @-webkit-keyframes action {
        0% { transform: translateY(0); }
        100% { transform: translateY(-20px); }
    }
    @keyframes action {
        0% { transform: translateY(0); }
        100% { transform: translateY(-20px); }
    }

.imagetimmy{
        -webkit-animation: action 1.5s infinite  alternate;
        animation: action 1.5s infinite  alternate;
    }
    @-webkit-keyframes action {
        0% { transform: translateY(0); }
        100% { transform: translateY(-20px); }
    }
    @keyframes action {
        0% { transform: translateY(0); }
        100% { transform: translateY(-20px); }
    }


.hover:hover .image {
  opacity: 0;
}

.hover:hover .imagetimmy {
  opacity: 0;
}

.hover:hover .text{
	opacity: 1;
}

@media only screen and (max-width: 681px){
	.text{
		margin: 0 5% 0 5%;
		width: 90%;
		font-size: 2.2vmin;
		text-align: left;
	}	
	
	.welcometext{
		margin: 0 5% 0 5%;
		width: 90%;
		font-size: 2.2vmin;
		text-align: left;
	}
	
	.navigate{
		right: 20%;
	}
	
	.hovertext{
		display: none;
	}
	
	.clicktext{
		display:block;
	}
}


@media only screen and (min-width: 680px) and (max-width: 1024px) {
	.text{
		margin: 0 5% 0 5%;
		width: 90%;
		font-size: 2vmin;
	}	
	
	.welcometext{
		margin: 0 5% 0 5%;
		width: 90%;
		font-size: 2vmin;
	}
	
	.navigate{
		right: 18%;
	}
/*
	
	.hovertext{
		display: none;
	}
	
	.clicktext{
		display:block;
		bottom: 18%;
	}
}
*/



