@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
  --c-background: white;
  --c-background_blue: #8AAAE5;
  --c-background_gr: linear-gradient(170.26deg, #001F3F 0%, rgba(32, 189, 255, 0.25) 50%, rgba(165, 254, 203, 0.25) 98.8%), #000000;
  --c-text: white;
  --c-background_header_gr: linear-gradient(106.35deg, #5433FF 2.64%, #20BDFF 49.71%, #A5FECB 96.25%);;
}


body{
    font-family: "DM Sans", sans-serif;
    background: var(--c-background_gr);
    background-repeat: no-repeat;
    /* color: #ffffff; */
    color: var(--c-text);
}

.custom_button_metallic{
    color: #ffffff;
    font-weight: 600;
    background: linear-gradient(174.61deg, rgb(212, 212, 212) -15.21%, rgb(42, 42, 42) 106.31%);
    transition: all 0.2s linear;
}

.custom_button_metallic:hover{
    transform: scale(1.05);
}

.blue_gr{
    font-family: 'Fredoka';
    background: var(--c-background_header_gr);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer_card {
  border-radius: 50px;
  border: 0.5px solid white;
  color: white;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0.55%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(21px);
  /* border-radius: 25px; */
}

@media screen and (max-width:480px) {
    
  .footer_card {
    border-radius: 25px;
  }
  }

  @keyframes appear {
    from{
      opacity: 0;
      scale: 0.7;
    }
    to{
      opacity: 1;
      scale: 1;
    }
  }
  
  @keyframes loading {
    0%{
      opacity: 0;
      scale: 0.9;
    }
    100%{
      opacity: 1;
      scale: 1;
    }
  }
  @keyframes slideLeft {
    0%{
      opacity: 0;
      transform: translateX(50px);
    }
    100%{
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes slideRight {
    0%{
      opacity: 0;
      transform: translateX(-50px);
    }
    100%{
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes slideTop {
    0%{
      opacity: 0;
      transform: translateY(50px);
    }
    100%{
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes slideBottom{
    0%{
      opacity: 0;
      transform: translateY(-50px);
    }
    100%{
      opacity: 1;
      transform: translateY(0);
    }
  }
  .animation_loading{
    animation: loading 0.2s linear forwards;
  }
  .slideLeft{
    animation: slideLeft 0.2s linear forwards;
  }
  .slideRight{
    animation: slideRight 0.2s linear forwards;
  }

  .slideTop{
    animation: slideTop 0.2s linear forwards;
  }
  .slideBottom{
    animation: slideBottom 0.2s linear forwards;
  }

  .animation_appear{
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0 cover 30%;

  }

/* .metallic-button {
    font-size: 14px;
    padding: 6px 16px;
    font-weight: 400;
    border: none;
    outline: none;
    color: #000;
    background: linear-gradient(
      45deg,
      #999 5%,
      #fff 10%,
      #ccc 30%,
      #ddd 50%,
      #ccc 70%,
      #fff 80%,
      #999 95%
    );
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.2s linear;
  }
  
  .metallic-button:hover {
    transform: scale(1.05);
  } */




