.bodymain {
	overflow: hidden;
	background: linear-gradient(-45deg, #000000, #d390aa, #225060, #008b6a);
  background-size: 800% 800%;
  animation: gradient 25s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }}

p {
	font-size: 30px;
	font-family: acumin-pro, sans-serif;
	font-weight: 700;
	font-style: normal;
	margin-bottom: 30px;
}

.ex {
	font-size: 70px;
  	animation: color-change 4s ease infinite;
  	margin-bottom: 0px;
}

a {
	font-size: 30px;
	font-family: acumin-pro, sans-serif;
	font-weight: 700;
	font-style: normal;
	margin-bottom: 30px;
	color: black;" 
}

@keyframes color-change {
  0% { color: #fff; }
  50% { color: #000; }
  100% { color: #fff; }

}}




