/* CSS Document */
body{
	animation: noscrollbar 6.3s linear;
	overflow: visible;
	margin: 0;
    font-size: 1.6vh;
}
.beginscherm{
	
	font-family: 'Amatic SC', cursive;
	display: grid;
	place-items:center;
	background-color: rgba(0,0,0,0.74); 
	background-image: url("pictures/ikdonker.png") ;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	color: white;
	/*height: 700px;*/
	height: 100vh;

	
}
.beginscherm a {
	text-decoration: none;
	color: darkturquoise;
}
.beginscherm a:hover {
	color: mediumaquamarine
}
.beginscherm a:visited {
	color: darkgoldenrod;
}
.beginscherm h1 {
	 animation: 
    typing 2.5s steps(40, end), step-end ease;
	overflow: hidden; /* Ensures the content is not revealed until the animation */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
		text-shadow: #000 1px 2px 1px;
    -webkit-font-smoothing: antialiased;
	font-size: 10vh;
	/*animation: begin 3s ease;*/
	
}
.tekstbegin {
	
	text-align: center;
	
	
}
.beginscherm h2{
	text-shadow: #000 1px 2px 1px;
    -webkit-font-smoothing: antialiased;
animation: fadeh2 5s ease;
	font-size: 5vh;
}
.beginscherm h3 {

	font-size: 3.5vh;
}

.scroll{
	animation: fadeh2 10s ease;
}
.scrolltekst{
	animation: fadeh2 8s ease;
}


.overmij{

margin-top: 100px;
	/*height:  700px;*/
	height: 98vh;
	font-family: 'Comfortaa', cursive;
}
.overmijdiv{
	margin-left: 100px;
    margin-right: 100px;
	

}
.overmij h1{
	
	font-size: 5vh;
	text-align: center;
	
}

.code{
	/*height:  700px;*/
	height: 98vh;
	font-family: 'Source Code Pro', monospace;
	background-color: black;
	color: lawngreen;
}

.codediv{
	margin-left: 261px;
	margin-right: 261px;
	
}
.code h1{
	font-size: 5vh;
	text-align: center;
	
}

.codediv a{
    color: aqua;
    text-decoration: none;
}
.codediv a:hover{
    color: darkcyan;
    font-style: italic;
}

[inview] { 
    color: inherit; 
  }
  
  /* inViewport */
  
  [inview="fade"] { 
    transition: 1s;
    opacity: 0;
    transform: scale(0);
    
  }
  [inview="fade"].is-inview { 
    opacity: 1;
    transform: unset;
  }
[inview="appear"] { 
    transition: 1s;
    opacity: 0;
	width: 0;
    
    
  }
  [inview="appear"].is-inview { 
    opacity: 1;
	  width: 100%;
	  
  }

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: orange; }
}

@keyframes fadeh2 {
	0% {
		opacity: 0;
	}
	49% {
		opacity: 0;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes noscrollbar {
	0% {
		overflow: hidden;
	}
	100% {
		overflow: hidden;
	}
}
@keyframes begin{
	0% {
		overflow: hidden;
		opacity: 0;
	}
	100% {
		overflow: hidden;
		opacity: 1;
	}
}

@keyframes fade{
	from{
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #4b6c8b; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #ba9c6e; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #93a4a7; 
}
footer{
	
	text-align: center;
	font-family: 'Comfortaa', cursive;
	
}