/* common css ******************************************************************************/


@font-face {

    font-family: 'Gilroy-Light';

    src: url('../fonts/Gilroy/Gilroy-Light.ttf');
}

@font-face {

    font-family: 'Gilroy-Light';

    src: url('../fonts/Gilroy/Gilroy-Light.ttf');
}

@font-face {

    font-family: 'Gilroy-Black';

    src: url('../fonts/Gilroy/Gilroy-Black.ttf');
}

@font-face {

    font-family: 'Gilroy-Bold';

    src: url('../fonts/Gilroy/Gilroy-Bold.ttf');
}


@font-face {

    font-family: 'Moon-Walk';

    src: url('../fonts/moon-walk/Moon-Walk.ttf');
}




:root {

    --white: #fff;

    --black: #000;

    --blue: #19226D;

    --gray: #5D5D5D;

    --dark-gray: #333333;

    --yellow: #FFF700;

}

.white {

    color: var(--white);

}

.black {

    color: var(--black);

}

.white-bg {

    background-color: var(--white);

}

.grey-bg {

    background-color: var(--grey-F2F2F7);

}

.green-gradient {

    background: linear-gradient(#00FF77, #29B15B);

}

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

    -moz-box-sizing: border-box;

    -webkit-box-sizing: border-box;

}

*::before,

*::after {

    box-sizing: border-box;

}

.common::after {

    content: '';

    position: absolute;

    width: 100%;

    height: 100%;

    left: 0;

    top: 0;

    background: var(--black);

}

h1,
h2,
h3.h4,
h5,
h6 {
    font-weight: 100;
}

p {

    margin: 0;

    padding: 0;

    font-size: 20px;

    /* line-height: 25px; */

    /* margin-bottom: 25px; */

    color: var(--black_343436);



}

p:last-child {

    margin-bottom: 0;

}


a {

    text-decoration: none;

    text-transform: capitalize;

    display: inline-block;

    line-height: 1.2;

    color: inherit;

    font-family: inherit;

}

span {

    display: inline-block;

}


img,
video {

    max-width: 100%;

    display: block;

}


/* **************************************************** */



body {
    max-width: 480px;
    margin: 0 auto;
    height: 100%;
    font-family: "Poppins";

}

.main {
    background-image: url("../images/banner-bg.png");
    height: 100vh;
    /* padding: 40px 50px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}


.main-text {
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
}

.main-text p {
    font-family: 'Gilroy-Bold';
    color: var(--white);
    font-size: 20px;
    text-transform: capitalize;
}

.main-text h1 {
    font-family: 'Gilroy-Black';
    color: var(--white);
    font-size: 60px;
    line-height: 0.8;
    text-transform: uppercase;
}
.bonus {
    border: 1px solid var(--yellow);
    border-radius: 10px;
    padding: 15px 20px;
    margin-top: 20px;
}

.bonus p {
    color: var(--white);
    font-family: 'Gilroy-Light';
    text-transform: uppercase;
    text-align: center;
}

.bonus h2 {
    color: var(--yellow);
    font-family: 'Moon-Walk';
    text-transform: uppercase;
    font-size: 36px;
    line-height: 0.9;
}

.target {
    width: 100%;
    position: relative;
    bottom: -50px;
}

.target img {
    width: auto;
    margin: 0 auto;
}

.btn-box {
    width: 100%;
}

.btn-box a {
    background-color: var(--yellow);
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0;
    padding: 15px 0;
    font-family: 'Gilroy-Black';
    font-size: 30px;
    color: var(--white);
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 9;
}

.btn-box a img {
    animation: tilt-shaking 0.2s linear infinite;
}

.ball {
    position: absolute;
    z-index: 1;
    animation: ballmove 0.8s forwards ease-out;
}

@keyframes ballmove {
    0% {
        right: 0;
        top: 30vh;
        transform: scale(.3);
        opacity: 0.5;
    }

    100% {
        right: 45%;
        top: 60vh;
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes tilt-shaking {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(0eg); }
    75% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
  }