@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-x: hidden;
    background-color: black;
    color: #fff;
    font-family: "Raleway", sans-serif;
}

.parent{
    width: 100%;
    height: 100%;
}

.child{
    border-bottom: 2px solid #fff;
    display: flex;
    align-items: center;
    padding: 20px;
    font-size: 3em;
    position: relative;
    cursor: pointer;

}

.child img{
    mix-blend-mode: difference;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;

    transition: all 0.3s linear;
}


@media screen and (max-width: 600px) {
    .child{
       
        font-size: 2rem;
      
    
    }
}
@media screen and (max-width: 440px) {
    .child{
       
        font-size: 1.2rem;
      
    
    }
}