@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;900&display=swap');
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        color: black;
    }

    html,
    body {
        height: 100%;
        width: 100%;
    }

    #main {
        height: 100%;
        width: 100%;
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .cursor {
        height: 50px;
        width: 50px;
        background-color: white;
        mix-blend-mode: difference;
        border-radius: 50%;
        position: absolute;
        transition: all linear 0.2s;
    }

    h1 {
        font-size: 2.5vw;
        font-weight: 900;
        
    }
    


