*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
html,body{
    width: 100%;
}
body{
    min-height: 100vh;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
#cursor{
    top: 0;
    left:0;
    position: fixed;
    background-color: #f2a217;
    height: 1rem;
    width: 1rem;
    mix-blend-mode: difference;
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
h1{
    font-size: 5rem;
}

::selection{
    background-color: rgba(114, 114, 4, 0.503);
}