

body{
    background: #f0e9c4;
    filter: blur(40%);
    background-image: url("img/background.jpeg");
    /* overflow: hidden; */
} 

.fullBody {
    position: absolute;
    width: 110%;
    height: 140%;
    background-color: #f0e9c4;
    opacity: 75%;
    margin-left: -10px;
    margin-top: -25px;
    z-index: -4;
}

h1 {
    /* styling */
    color: black;
    font-family: 'Poppins', sans-serif; 
    text-align: justify;
    font-weight: 400;
    font-size: 19px;
    line-height: 30px;
    filter: blur(0.6px);
    /* positioning */
    max-width: 800px;
    margin: auto;
    /* margin-right: auto ; */
    padding: 10%;
    z-index: 2;
}

div.cursors div {
    position: absolute;
    top: 300px;
    left: 300px;
    width: 250px;
    height: 250px;
    background-color: black;
    opacity: 25%;
    filter: blur(20px);
    border-radius: 50%;
    z-index: 4;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.next {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: black;
    filter: blur(10px);
    margin-left: auto;
    margin-right: auto;
   opacity: 60%;
   margin-top: -50px;

}

                    /* .animationClick {
                        width: 30px;
                        height: 30px;
                        border-radius: 50%;
                        position: absolute;
                        filter: blur(20px);
                        background-color: black;
                        /* transition: opacity 2s;
                        transition: border-radius 2s;
                        transition: width 2s;
                        transition: height 2s; */
                        /* opacity: 75;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        animation-name: spread;
                        animation-duration: 2s;
                        animation-timing-function: ease-in-out;
                    } */

                    /* @keyframes spread {
                        0% {
                        width: 30px;
                        height: 30px;
                        border-radius: 50%;
                        }
                        100% {
                            width: 100vw;
                            height: 100vh;
                            border-radius: 1%;
                        }
                    } */ 
                    /* #canvas1 {
                        position: absolute;
                        top: 0px;
                        left: 0px;
                        width: 100%;
                        height: 100%;
                    } */



@media screen and (max-width: 550px){
    .fullBody {
        position: absolute;
        width: 110%;
        height: 180%;
        background-color: #f0e9c4;
        opacity: 75%;
        margin-left: -10px;
        margin-top: -25px;
        z-index: -4;
    }

    .cursor {
        position: absolute;
        height: 200px;
        width: 200px;
        background-color: black;
        opacity: 90%;
        filter: blur(7px);
        border-radius: 50%;
    }

    h1 {
        /* styling */
        color: black;
        font-family: 'Poppins', sans-serif; 
        text-align: left;
        font-weight: 400;
        font-size: 19px;
        line-height: 30px;
        filter: blur(0.3px);
        /* positioning */
        max-width: 532px;
        margin: auto;
        /* margin-right: auto ; */
        padding: 10%;
        z-index: 2;
    }

    .next {
        margin-top: 30px;
    }
}