 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: cursive,'Nunito', sans-serif;
     background-image: linear-gradient(120deg, #fdfbfb 0%, #F0FFFF 100%);
     min-height: 100vh;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     color: black;
 }

 .container {
     text-align: center;
 }

 h1 {
     font-size: 5rem;
     margin-bottom: 1rem;
     font-weight: 700;
 }

 p {
     font-size: 1.5rem;
     margin-bottom: 3rem;
     opacity: 0.9;
 }

 .animation-wrapper {
     position: relative;
     margin: 3rem auto;
 }

 .animation-container {
     position: relative;
     width: 300px;
     height: 300px;
     margin: 0 auto;
 }

 .tree {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     font-size: 200px;
     z-index: 1;
 }

 .orbit {
     position: absolute;
     top: 50%;
     left: 50%;
     width: 200px;
     height: 200px;
     margin-left: -100px;
     margin-top: -100px;
     animation: rotate 3s ease-in-out infinite;
     z-index: 10;
 }

 .magnifying-glass {
     position: absolute;
     top: 0;
     left: 50%;
     transform: translateX(-50%);
     font-size: 50px;
     animation: counterRotate 3s ease-in-out infinite;
 }

 @keyframes counterRotate {
     from {
         transform: translateX(-50%) rotate(0deg);
     }

     to {
         transform: translateX(-50%) rotate(-360deg);
     }
 }

 @keyframes rotate {
     from {
         transform: rotate(0deg);
     }

     to {
         transform: rotate(360deg);
     }
 }

 @media (max-width: 768px) {
     h1 {
         font-size: 3rem;
     }

     p {
         font-size: 1.5rem;
     }

     .animation-container {
         width: 250px;
         height: 250px;
     }

     .tree {
         font-size: 150px;
     }

     .orbit {
         width: 200px;
         height: 200px;
         margin-left: -100px;
         margin-top: -100px;
     }

     .magnifying-glass {
         font-size: 40px;
     }
 }