body {
    background-color: #f0f0f0;
    font-family: sans-serif;
     background-color: #f0f0f0;
    font-family: 'Poppins', sans-serif; /* Using Poppins font */
}

.social-buttons li {
    display: inline-block;
    margin-right: 10px;
}

@keyframes pulse {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

.social-buttons li {
    display: inline-block;
    margin-right: 10px;
}

@keyframes pulse {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

@keyframes fadeInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}