
.textured-bg {
    background-color: #006f82;
    background-image: url("https://www.transparenttextures.com/patterns/diagmonds-light.png");
}

.textured {
	background-color: rgba(255, 255, 255, 0.1);
    /* background-image: url("https://www.transparenttextures.com/patterns/diagmonds-light.png"); */
}

body {
	/* background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab); */
    background: linear-gradient(-45deg, #5262ee, #2385d5, #23bad5, #23a6d5);
	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%;
	}
}
