body {
    margin: 0;
    padding: 0;
    background: #2B2D42;
    font-family: Arial, sans-serif;
  }
  
  #wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    width: 400px;
    text-align: center;
    animation: changeColor 10s infinite;
  }
  
  @keyframes changeColor {
    0% {
      background-color: #8d39fa;
    }
    20% {
      background-color: #ff0055;
    }
    40% {
      background-color: #ffaa00;
    }
    60% {
      background-color: #00eaff;
    }
    80% {
      background-color: #5d5fe5;
    }
    100% {
      background-color: #8d39fa;
    }
  }
  
  h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: black;
  }
  
  p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #333;
  }
  
  a {
    display: inline-block;
    background-color: #4B0082;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  a:hover {
    background-color: #333;
  }
  