.home {
    padding-top: 272px;
    position: relative;
}

.home:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -494px;
    left: 50%;
    transform: translateX(-50%);
    width: 1026px;
    height: 1026px;
    border-radius: 1026px;
    background: linear-gradient(180deg, #6C1919 35.73%, #21A2DC 100%);
    filter: blur(400px);
}

.home__container {
    padding: 0 24px;
}

.home__bg {
    position: absolute;
    top: 336px;
    left: 50.5%;
    transform: translateX(-50%);
    z-index: -1;
}

.home__title {
    font-size: 67px;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    color: #FFF;
    max-width: 849px;
    margin: 0 auto 30px auto;
}

.home__description {
    font-size: 21px;
    font-weight: 400;
    line-height: 35px;
    max-width: 835px;
    margin: 0 auto 52px auto;
    text-align: center;
}

.home__buttons {
    display: flex;
    justify-content: center;
    column-gap: 16px;
}

.home__button:first-child {
    background: linear-gradient(90deg, #AF23E2 0%, #23A1DD 100%);
    padding: 22px 59px;
}

.home__button {
    font-size: 17px;
    font-weight: 400;
    line-height: normal;
    color: #F1F0F5;
    padding: 22px 64px;
    border-radius: 40px;
    background: #282D47;
}

.home-flying-coins-left {
    position: absolute;
    top: -83px;
    left: -62px;
}

.home-flying-coins-right {
    position: absolute;
    top: -77px;
    right: -57px;
}

.home-candles {
    position: absolute;
    top: 241px;
    left: 76px;
}

.home-rocket {
    position: absolute;
    bottom: -119px;
    left: 479px;
}

.home-coins {
    position: absolute;
    bottom: 38px;
    right: 27px;
}

@media (max-width: 850px) {
    .home {
        padding-top: 150px;
    }

    .home__bg {
        top: 250px;
    }

    .home__title {
        font-size: 55px;
    }
}

@media (max-width: 600px) {
    .home__buttons {
        flex-direction: column;
        row-gap: 15px;
        max-width: 280px;
        margin: 0 auto;
    }

    .home__button {
        justify-content: center;
        padding: 15px 0 !important;
    }
}

@media (max-width: 500px) {
    .home__container {
        padding: 0 15px;
    }

    .home__title {
        font-size: 50px;
    }

    .home__description {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .home__bg {
        top: 220px;
    }
}