body{
	background: rgb(26, 188, 156);
	background: -moz-linear-gradient(-45deg, rgba(26, 188, 156, 1) 0%, rgba(142, 68, 173, 1) 100%);
	background: -webkit-linear-gradient(-45deg, rgba(26, 188, 156, 1) 0%, rgba(142, 68, 173, 1) 100%);
	background: linear-gradient(135deg, rgba(26, 188, 156, 1) 0%, rgba(142, 68, 173, 1) 100%);
    background-size: 2000px 2000px;
    background-repeat: no-repeat;
}



.nav {
    width: 550px;
    padding: 10px;
    border: 2px solid black;
    margin: 0;
    background-color: gray;
}

#skills:hover{
    cursor: pointer;
    color: black;
}

a:hover {
    color: black;
}

a {
    color: white;
}

.about_it{
    display: none;
}

.skills{
    display: none;
}

h2 {
    font-family: 'Mukta', sans-serif;
    font-size: 130px;
    text-shadow: 2px 2px white;
}



h3{
    font-size: 80px;
    color: white;
}

#description{
    width: 390px;
    padding: 10px;
    border: 2px solid transparent;
    margin: 0;
    color: white;
    font-size: 20px;
}

b{
    color: white ;
    background-color: gray;
}

/* img float */ 
#avatar{ 
    height: 400px;  
    width: 400px;  
    border: 5px white solid;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
	transform: translatey(0px);
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
	50% {
		box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);
		transform: translatey(-20px);
	}
	100% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
}

.card{
    overflow: hidden;
	box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
	transform: translatey(0px);
    animation: float 6s ease-in-out infinite;
    display: none;
}

.jumbotron{
    overflow: hidden;
	box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
	transform: translatey(0px);
    animation: float 6s ease-in-out infinite;
    display: none;
}