body
{
	text-align:center;
	background-image:url("clouds_r.jpg");
	margin-bottom:0px;
	margin-left:0px;
	margin-right:0px;
}
#title
{
	font-size:40px;
	color:#000080;
	z-index:-1;
	left:190px;
	background-color:#98AEDC;
}
#links
{
	top:0px;
	left:0px;
	color:blue;
	text-align:left;
	font-size:20px;
	height:1200px;
	width:190px;
	float:left;
	background-color:#848BC2;
	z-index:0;
	position:fixed;
	transform: translateX(100%); 
	opacity: 0;
	animation: slideIn2 1s forwards;
	animation-delay: 0.5s;
}
@keyframes slideIn2 {
  from {
    transform: translateX(-100%); /* Start from off-screen left */
    opacity: 0;
  }
  to {
    transform: translateX(0); /* End at its natural position */
    opacity: 1; /* Make it fully visible */
  }
}
#projects
{
	top:0px;
	right:0px;
	color:blue;
	text-align:left;
	font-size:16px;
	height:1603px;
	width:210px;
	float:right;
	background-color:#848BC2;
	z-index:1;
	position:absolute;
	transform: translateX(100%); 
	opacity: 0;
	animation: slideIn 1s forwards;
	animation-delay: 0.5s;
}




#para
{
	position:absolute;
	background-color:#A6BDD3;
	color:#000080;
	text-align:center;
	font-size:20px;
	left:290px;
	top:300px;
	width:910px;
	background-image:url("clouds_r.jpg")
	transform: translateX(-100%); 
	opacity: 0;
	animation: slideIn 1s forwards;
	animation-delay: 0.5s;
	
}
@keyframes slideIn {
  from {
    transform: translateX(100%); /* Start from off-screen left */
    opacity: 0;
  }
  to {
    transform: translateX(0); /* End at its natural position */
    opacity: 1; /* Make it fully visible */
  }
}

a:hover
{
	text-decoration:underline;
	color:5498db;
}