body{
    background-color: rgb(247, 241, 241);
    background-image: radial-gradient(circle, #ff00cc, #333399, #000);
    animation: changeBackground 5s ease-in-out infinite alternate;
  }
  @keyframes changeBackground {
    0% {
      background-size: 100% 100%;
    }
    50% {
      background-size: 150% 150%;
    }
    100% {
      background-size: 200% 200%;
    }
  }
  @keyframes wave {
    from {
      transform: rotate(-10deg);
    }
    to {
      transform: rotate(10deg);
    }
  }
  button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #0062cc;
  }

div h2{
  color: #fff;
  font-size: 36px;
  text-align: center;
  margin-bottom: 20px;
  }
div p{
    font-size: 20px;
    color: #fff;
    font-size: 18px;
     line-height: 1.5;
    color:white;
    margin: 1px;
    padding: 10px;
    }
img{
  float: left;
  margin: 10px;
}
