@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

/*
*
{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body
{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    background-color: #040d15;
}
*/

 /*button.button-cta-1
{
    position: relative;
    display: inline-block;
    padding: 0.5em 1em;
    margin: 10px 0;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    overflow: hidden;
    background: linear-gradient(90deg, #8169ee, #541ee9);
    z-index: 1;
    width: 50%;
}
a,button:nth-child(1)
{
    background: linear-gradient(90deg, #71ffcc, #00c07a);
    color: #000;
}

a.button-cta-2
{
    position: relative;
    display: inline-block;
    padding: 0.5em 1em;
    margin: 10px 0;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    overflow: hidden;
    background: linear-gradient(90deg, #8169ee, #541ee9);
    z-index: 1;
    width: 30%;
    float: none;
}

 button.button-cta-3
{
    position: relative;
    display: inline-block;
    padding: 0.5em 1em;
    margin: 10px 0;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    overflow: hidden;
    background: linear-gradient(90deg, #ee6986, #e91ea5);
    z-index: 1;
    width: 30%;
    float: none;
}*/

/*button-cta-1, button-cta-2:hover
{
    animation-name: move-button;
    animation-delay: 0s;
    animation-duration: 0.2s;
    animation-timing-function: linear;
}
*/

/*span
{
    position: absolute;
    background: #000;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
    z-index: 15;
    animation: animate-ripple 1s linear infinite;
}*/


/*@keyframes animate-ripple
{
    0%
    {
        width: 0px;
        height: 0px;
        opacity: 0.5;
    }
    100%
   {
       width: 500px;
       height: 500px;
       opacity: 0;
   } 
}


@keyframes move-button
{
    0% 
    {
      transform: translateY(0px);
    }

    75% 
    {
      transform: translateY(-5px);
    }

    100% 
    {
      transform: translateY(-15px);
    }
}



@media screen and (max-width: 1300px) {
    button.button-cta-1
    {
        width: 30%;
    }

    a.button-cta-2
    {
        width: 30%;
    }

    button.button-cta-3
    {
        width: 30%;
    }
    
}

@media screen and (max-width: 991px) {
    button.button-cta-1
    {
        width: 40%;
    }

    a.button-cta-2
    {
        width: 40%;
    }

    button.button-cta-3
    {
        width: 40%;
    }
    
}

@media screen and (max-width: 767px) {

    button.button-cta-1
    {
        width: 60%;
    }

    a.button-cta-2
    {
        width: 40%;
    }

    button.button-cta-3
    {
        width: 40%;
    }

}

@media screen and (max-width: 479px) {

    button.button-cta-1
    {
        width: 60%;
    }

    a.button-cta-2
    {
        width: 50%;
    }

    button.button-cta-3
    {
        width: 50%;
    }
}*/