body {
    background-color: black;
    overflow: scroll;
}

.text{
    color: black;
    font-family: 'Poppins', sans-serif;
    text-align: justify;
    font-weight: 300;
    font-size: 19px;
    line-height: 30px;

    /* positioning */
    max-width: 700px;
    margin: auto;
    padding: 10%;
    z-index: 2;
    margin-bottom: 100px;
}

.cursor {
    position: absolute;
    height: 250px;
    width: 250px;
    background-color: #f0e9c4;
    opacity: 75%;
    filter: blur(40px);
    border-radius: 50%;
    z-index: -4;
}

.next {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: black;
    filter: blur(10px);
    /* position: absolute; */
    margin-top: -200px;
    margin-left: auto;
    margin-right: auto;
}


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

.text {
    text-align: center;
}

.next {
    background-color: #f0e9c4;
}

}