body {
    background-color: black;
}

.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;
}

.cursor {
    position: absolute;
    height: 150px;
    width: 150px;
    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-left: auto;
    margin-right: auto;
}

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

    .text {
        text-align: center;
    }
    
    .next {
        background-color: #f0e9c4;
    }
    
    }