html,
body {
    margin: 0;
    padding: 0;
}

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(hsla(45,98%,58%,1) 0%, hsla(201,70%,45%,1) 100%);
}

#blob-container {
    cursor: none;
    width: 100vw;
    height: 100vh;
}

#blob {
    width: 33vw;
    height: 33vh;
    fill: url(#gradient); 
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}
