footer{
    background-image: linear-gradient(to bottom, #00000000, #000000 60%);
}

body {
	background: linear-gradient(-45deg, #a25891, #548875, #5f7999);
  background-attachment: fixed;
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
	font-family: 'Times New Roman', Times, serif;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.custom-bg-dark{
	background-color: rgba(0, 0, 0, 0.32);
}

.custom-bg-dark-card{
	background-color: rgba(0, 0, 0, 0.566);
}
