body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    overflow: hidden;
  }
  
  .container {
    max-width: 800px;
    margin: 100px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
  }
  
  .header img {
    width: 80px;
  }
  
  .header h1 {
    color: #333333;
    margin-top: 20px;
  }
  
  .content {
    margin-top: 30px;
    color: #666666;
  }
  
  .contact-link {
    color: #007bff;
    text-decoration: none;
  }
  
  .contact-link:hover {
    text-decoration: underline;
  }
  
  .floating-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
  }
  
  .floating-image,
  .floating-svg {
    position: absolute;
    animation: float 10s infinite linear;
  }
  
  .floating-image {
    width: 60px;
    opacity: 0.8;
  }
  
  .floating-svg {
    width: 80px;
    opacity: 0.6;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  