body{
    font-family: "Oswald", sans-serif;
    color: #6b6b6b;
    text-transform:uppercase;
    letter-spacing:3px;
    font-style: normal;
}

#home-content{
    background: linear-gradient(-45deg, #06274a, #2D68A8);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	color:#fff;
}

#about-content{
    background-color:#fff;
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

    h1 {
      font-weight: 500;
      color:#fff; /*color:#101010;*/
      letter-spacing:0px;
    }

footer{
    position:fixed;
    bottom:0;
    right:0;
}



