@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    overflow-x: hidden;
}

body{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: black;
    color: #fff;
    font-family: "Raleway", sans-serif;
}

.parent{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.parent h1{
    font-size: 8em;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}

.cursor{
    mix-blend-mode: difference;

    height: 40px;
    width: 40px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: all 0.3s linear;
    opacity: 0;
}

@media screen and (max-width: 992px) {
    .parent h1{  
        font-size: 6em;
    }
}
@media screen and (max-width: 767px) {
    .parent h1{  
        font-size: 5em;
    }
}

@media screen and (max-width: 600px) {
    .parent h1{
       
        font-size: 4rem;
      
    
    }
}
@media screen and (max-width: 440px) {
    .parent h1{
       
        font-size:2.5em;
      
    
    }
}