 body {
  background: linear-gradient(to bottom, #e9edf1, #ffffff, #d0e0f0);
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
 }

 .logo {
   max-width: 200px;
   animation: pulse 3s infinite;
 }

 @keyframes pulse {
   0% {
     transform: scale(1);
   }

   50% {
     transform: scale(1.04);
   }

   100% {
     transform: scale(1);
   }
 }