* {
    margin: 0;
    padding: 0;
  transition: all 1s ease-out;
  -webkit-transition: all 1s ease-out;
}

html {
    height: 100vh;
}

body {
    font-family: "Roboto Cn", sans-serif;
    margin: 0;
    min-height: 100vh;
    height: 100vh;
}

.wrapper {
    background:#e8e8e8;
    height:100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left {
    background:#1c1c1c;
    color:#e8e8e8;
    float:left;
    width:50%;
    height:100vh;
    display: flex;
    justify-content: right; /* align horizontal */
    align-items: center; /* align vertical */
}

.s {
    text-align:right;
    width: 100%;
}

.left .l {
    display: none;
}

.s, .l {
    font-family: open sans, sans-serif;
    font-size:350px;
}

.l {
    color: #1c1c1c;
}

.right {
    float:right;
    width:50%;
    height:100vh;
    display: flex;
    align-items: center; /* align vertical */
}

.css-typing p {
    border-right: .15em solid #1c1c1c;
    color:#1c1c1c;
    white-space: nowrap;
    overflow: hidden;
    margin: 5px 0;
    font-size: 25px;
  
}

.css-typing p:nth-child(1) {
  margin-top:75px;
    width: 5.3em;
    -webkit-animation: type 1s steps(10, end);
    animation: type 1s steps(10, end);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.css-typing p:nth-child(2) {
    width: 7.5em;
    opacity: 0;
    font-size:40px;
    font-weight: bold;
    -webkit-animation: type2 1,7s steps(14, end);
    animation: type2 2s steps(14, end);
    -webkit-animation-delay: 2s;
    animation-delay: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  margin-bottom:30px
} 

.css-typing p:nth-child(3) {
    width: 7.5em;
    opacity: 0;
    -webkit-animation: type2 1.7s steps(16, end);
    animation: type2 2s steps(16, end);
    -webkit-animation-delay: 5s;
    animation-delay: 3.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.css-typing p:nth-child(4) {
    width: 5.5em;
    opacity: 0;
    -webkit-animation: type2 1.3s steps(10, end);
    animation: type2 2s steps(10, end);
    -webkit-animation-delay: 7s;
    animation-delay: 5.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.css-typing p:nth-child(5) {
    width: 5.4em;
    opacity: 0;
    -webkit-animation: type3 1.5s steps(10, end), blink .5s step-end infinite alternate;
    animation: type3 2s steps(10, end), blink .5s step-end infinite alternate;
    -webkit-animation-delay: 9s;
    animation-delay: 7.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@keyframes type {
  0% {
    width: 0;
  }
  99.9% {
    border-right: .15em solid #1c1c1c;
  }
  100% {
    border: none;
  }
}

@-webkit-keyframes type {
  0% {
    width: 0;
  }
  99.9% {
    border-right: .15em solid #1c1c1c;
  }
  100% {
    border: none;
  }
}

@keyframes type2 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  99.9% {
    border-right: .15em solid #1c1c1c;
  }
  100% {
    opacity: 1;
    border: none;
  }
}

@-webkit-keyframes type2 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  99.9% {
    border-right: .15em solid #1c1c1c;
  }
  100% {
    opacity: 1;
    border: none;
  }
}

@keyframes type3 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes type3 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}
@-webkit-keyframes blink {
  50% {
    border-color: tranparent;
  }
}

/* Hamburger MenÃ¼ */
.row {
    position: absolute;
    left: 6%;
    top: 5%;
}

label.hamburg { 
   display: block;
   background: #1c1c1c; width: 50px; height: 50px; 
   position: relative; 
   margin-left: auto; margin-right: auto;
   border-radius: 4px; 
}

input#hamburg {display:none}

.line { 
   position: absolute; 
   left:10px;
   height: 4px; width: 30px; 
   background: #e8e8e8; border-radius: 2px;
   display: block; 
   transition: 0.5s; 
   transform-origin: center; 
}

.line:nth-child(1) { top: 12px; }
.line:nth-child(2) { top: 24px; }
.line:nth-child(3) { top: 36px; }

.full-screen-menu-active .hamburg .line:nth-child(1){
   transform: translateY(12px) rotate(-45deg);
}

.full-screen-menu-active .hamburg .line:nth-child(2){
   opacity:0;
}

.full-screen-menu-active .hamburg .line:nth-child(3){
   transform: translateY(-12px) rotate(45deg);
}

/* Overlay MenÃ¼ */
#full-screen-menu-toggle {
	z-index: 20;
	position: absolute;
	top:50%;
	left:1em;
}

.site-nav {
  /*transition: all 0.9s ease;*/
  transition: 1.0s;
  opacity: 1;
  pointer-events: none;
  position: fixed; 
  top: 0;
  left: 0;
  height: 100vh;
  width: 0;
  background-color: #1c1c1c; 
  z-index:10;
}

.full-screen-menu-active .site-nav {
  opacity: 1;
  pointer-events: initial;
}

.full-screen-menu-active .site-nav ul {
  opacity: 1;
  pointer-events: initial;
}
 
.site-nav ul {
  display: block;
  opacity:0;
  transition: 0.5s;
  padding: 0;
  list-style-type: none;
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -15%) scale(0.5);
 
}

.site-nav li {
    float: left;
}

.site-nav a {
	color:#e8e8e8;
	text-decoration: none;
	display: block;
	padding-left:7em; 
}

.site-nav a:hover { color:#00edb4; }
.site-nav a:active { color:#00edb4; }

.full-screen-menu-active .left {
  transform: translateX(0); 
	animation: slideOut 0.5s forwards;
  animation-delay: 0.2s;

}

.full-screen-menu-active .site-nav  {
	list-style: none;
	transform: translateX(-120rem); 
	animation: slideIn 1.2s forwards;
  animation-delay: 0.4s;
}

.full-screen-menu-active .site-nav ul {
  transform: translate(-50%, -50%) scale(1);
}


.full-screen-menu-active .site-nav ul li  {
	list-style: none;
	transform: translateX(-100rem); 
	animation: slideIn 1s forwards;
 
}

.full-screen-menu-active .site-nav ul li:nth-child(1){
	animation-delay: 1.4s;
  transform: translateX(200%);
  
}

.full-screen-menu-active .site-nav ul li:nth-child(2){
	animation-delay: 1.3s;
   transform: translateX(200%);
}

.full-screen-menu-active .site-nav ul li:nth-child(3){
	animation-delay: 1.2s;
   transform: translateX(200%);
}

.full-screen-menu-active .site-nav ul li:nth-child(4){
	animation-delay: 1s;
   transform: translateX(200%); 
}




@keyframes slideIn {
	from{

	}
	to{
		transform: translateX(0);
	}
}

@keyframes slideOut {
	from{

	}
	to{
		transform: translateX(-100%);
	}
}

@media screen and (max-width:768px) {

    .css-typing p {
        font-size: 20px;
    }

    .css-typing p:nth-child(2) {
        font-size:30px;
        font-weight: bold;
    }


}

@media screen and (max-width:600px) {

    .wrapper {
        display: block;
    }

    .left, .right {
        width: 100%;
        justify-content: center;
    }

    .left {
        height: 40%;
    }

    .right {
        height: 60%;
    }

    .s, .l {
        font-size: 200px;
        color:#e8e8e8;
    }

    .left .l {
        display: block;
    }

    .left .s {
        width: auto;
    }

    .right .l {
        display: none;
    }

    .css-typing p {
        margin: 10px auto;

    }

    .site-nav li {
        float: none;
      padding-top:3em;
    }

  #full-screen-menu-toggle {
	z-index: 20;
	position: absolute;
	top:1em;
	left:1em;
    	}
    
    .full-screen-menu-active .site-nav ul li:nth-child(1){
	animation-delay: 1.4s;
  transform: translateX(-200%);
  
}

.full-screen-menu-active .site-nav ul li:nth-child(2){
	animation-delay: 1.3s;
   transform: translateX(-200%);
}

.full-screen-menu-active .site-nav ul li:nth-child(3){
	animation-delay: 1.2s;
   transform: translateX(-200%);
}

.full-screen-menu-active .site-nav ul li:nth-child(4){
	animation-delay: 1s;
   transform: translateX(-200%); 
}




@keyframes slideIn {
	from{

	}
	to{
		transform: translateX(0);

 }
    
  
}



.full-screen-menu-active .css-typing,
.full-screen-menu-active .right,
.full-screen-menu-active .left { 
 webkit-filter: blur(5px);
 filter: blur(5px);
}