@import url('https://fonts.cdnfonts.com/css/lovely');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

#main {
    height: 100vh;
    width: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cursor {
    position: fixed;
    font-size: 20px;
    top: 0;
    left: 0;
    pointer-events: none;
}

#image {
    width: 70vh;
    height: 40vh;
    background-color: red;
    background-image: url(img.png);
    background-position: center;
    background-size: cover;
}