body{
	background-color: #202020;
	-webkit-font-smoothing: antialiased;
}

body {
	background: linear-gradient(-45deg, #aa4b6b, #6b6b83, #3b8d99);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.bg-custom{
    background-color: transparent;    
}

.logo{
	height: 150px;
}