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

.container {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;
}

.text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: sans-serif;
    font-size: 10em;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase; 
}

.cursor {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10;
    box-shadow: 1px 1px 10px #00f;
}