* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #6A59CA;
    color: #2c2c2c;
    line-height: 1.6;
  }
  
  .header {
    background-color: #ACAAF0;
    padding: 10px 0;
  }
  
  .navbar ul {
    display: flex;
    justify-content: center;
    list-style: none;
  }
  
  .navbar ul li {
    margin: 0 15px;
  }
  
  .navbar ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
  }
  
  .navbar ul li a:hover {
    text-decoration: underline;
  }

  
  .banner {
    text-align: center;
    margin: 20px 0;
  }
  
  .logo {
    max-width: 500px;
  }

  .float {
    max-width: 650px;
    width: 100%;
    animation: float 6s ease-in-out infinite;
  }
  
  .content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }
  
  #print h1, #print h2, #web h1, #web h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 15px;
  }
  
  #print p, #print ul, #web p, #web ul {
    margin-bottom: 20px;
    color: #ffffff;
  }
  
  #print ul, #web ul {
    list-style: disc;
    margin-left: 20px;
  }
  
  #print strong, #web strong {
    color: #ffffff;
  }

  .illustration-section {
    padding: 40px 20px;
    background-color: #6d57d3;
    border: 10px solid rgb(255, 255, 255);
    border-radius: 10px;
  }
  
  .illustration {
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
  }
  
  .illustration img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    margin-top: 15px;
  }
  
  .illustration p {
    font-size: 16px;
    color: #ffffff;
  }

  @keyframes float {
    0% {
      transform: translatey(0px);
    }
  
    50% {
      transform: translatey(-20px);
    }
  
    100% {
      transform: translatey(0px);
    }
  }