body{
    background:#eee;
	font-family: 'Ubuntu', serif;
	color:#444;
	font-size:1.6em;
}
.ad_container{
	margin-bottom:20px;
	height:100px;
	float:right;
}
.container{
	width:90%;
	margin:30px auto;
	padding:25px;
	min-height:400px;
	height:auto;
}

/***************************
 * Typed Custom styling    *
 ***************************/
 #typed-cursor{
  opacity: 0;
}

/***************************
 * CSS Typing styling    *
 ***************************/
 .css-typing
 {
    width: 30em;
    white-space:nowrap;
    overflow:hidden;
    -webkit-animation: type 5s steps(50, end);
    animation: type 5s steps(50, end);
    animation-fill-mode: forwards;
}

@keyframes type{
    from { width: 0; }
}

@-webkit-keyframes type{
    from { width: 0; }
}