.divbg {
    background: linear-gradient(135deg, #ADD8E6, #E0FFFF);
	border-radius:15px;
}
.pulse-text {
  display: inline-block;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.animated-button {
   animation: bounce 1.5s infinite;
	color:white !important;
	margin-top:20px;
	background-color:blue !important;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px); 
  }
}
@media (min-width: 1350px){
	.headerforlargescreen{
	font-size:45px;
}
}
