@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    scroll-behavior: smooth;
    list-style: none;
}

.footer {
  display: flex;
  width: 100%;
  /* height: 50px;/ */
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 2px 10px;
  background: #10182F;
  position: relative;
  bottom: 0;
}

.links{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}
.links a{
    color: #fff;
}

hr{
    height: 15px;
    color: #fff;

}

.developer{
    font-size: 14px;
    color: #fff;
}

.developer a{
    /* color: #ffd000; */
    padding: 2px 6px;
    border-radius: 20px;
    margin: 0 5px;
    /* animation: pulsing 1.25s ease-in-out infinite; */
    background: #ffd000;
    color: #000;
}

@keyframes pulsing{
  0%{
    background: #ffd000;
    color: #000;
  }
  50%{
    background: transparent;
    color: #ffd000;
  }
  100%{
    background: #ffd000;
    color: #000;
  }
}

.footer-col .icons {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.footer-col .icons i {
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  transition: 0.25s ease-in-out;
}

.footer-col .icons i:hover  {
  background: #ffd000;
  color: #000;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1px;
  }

  .developer{
    font-size: 10px;
  }

  .links{
    font-size: 10px;
  }

  .icons i{
    font-size: 10px;
  }


}