@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.container {

  position: relative;
  width: 256px;
  height: 256px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.container span {
    
  position: absolute;
  left: 0;
  width: 22px;
  height: 5px;
  background: #c4c7c7;
  border-radius: 8px;
  transform-origin: 128px;
  transform: scale(1.4) rotate(calc(var(--i) * (360deg / 50)));
  animation: animateBlink 4.5s linear infinite;
  animation-delay: calc(var(--i) * (4.5s / 50));
}




body {

  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;

  /* background: #e4e7e9; */
  background: linear-gradient(315deg, #fff 0%, #d7e1ec 74%);

  background: -moz-linear-gradient(315deg, #fff 0%, #d7e1ec 74%);
  background: -ms-linear-gradient(315deg, #fff 0%, #d7e1ec 74%);

  z-index: 1;

}

.login-box {

  position: absolute;
  left: 50px;
  width: 400px;
}

img {
  height: auto;
  width: 40%;

  max-width: 100%;
}

.button{
  margin-top: 4px;
  margin-bottom: 4px;
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50px;
  line-height: 50px;
  text-align: center;
  box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
}

.wrapper .button .icon{
  font-size: 20px;
}

.wrapper .button:hover{
  width: 100px;
  transition: 0.7s
}

.facebook{
  color: #1877F2;
}

.twitter{
  color: #1DA1F2;
}

.youtube{
  color: #CD201F;
}

.instagram{
  color: #E4405F;
}

.telegram{
  color: #0061FF;
}

.threads{
  color: #131418;
}

.whatsapp{
  color: #25D366;
}





.facebook{
  color: #1877F2;
}




@keyframes animateBlink {
  0% {
    background: rgb(172, 33, 36);
  }
  25% {
    background: #2c4766;
  }
}


.a {
  animation: pulse 3s linear infinite;
}

@-webkit-keyframes "pulse" {

  0% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.linktree a {
  color: #fff;
  text-decoration: none; 
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;    
  padding: 10px;
  
  width: 100%;
  background-color: rgb(172, 33, 36);
  
  text-align: center;
}