@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden !important;
   
}
*{
     font-family: Poppins;
}
.body_pic {
    width: 100% !important;
}

.merger {
    position: relative;
}

.merge_buy {
    background-color: red;
    position: absolute;
    top: 0;
    z-index: 10;
}

.bush_merg {
    position: absolute;
    bottom: 104;
    left: 0;
}

.rocket_merge {
    position: absolute;
    bottom: 150;
    left: 70;
    z-index: 10;
    height: 210;
}

.portal_merge {
    position: absolute;
    bottom: 80;
    left: 10;
    z-index: 9;
    height: 210;
}

.float_btn {
    position: absolute;
    bottom: 51%;
    left: 40;
    z-index: 99;
    height: 43px;
    width: 80%;
    letter-spacing: 1px;
    font-weight: 700;
    border: 3px solid #fb5fcd;
    background-color: #ffafec;
    border-radius: 4px;

}

.buy_clicker{
    /* background-color: red; */
    width: 100%;
    height: 130px;
    position: absolute;
    z-index: 20;
    top: 0;
}
.buy_clicker2{
    /* background-color: red; */
    width: 100%;
    height: 230px;
    position: absolute;
    z-index: 20;
    top: 1800;
}

.loader {
    background-color: black;
    height: 100vh;
    justify-content: center;
    align-items: center;
    display: flex;
}

.loader img {
    height: 110px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);

    }
}