@import url('https://fonts.googleapis.com/css2?family=Montez&display=swap');

.wrapper1 {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    outline: none;
    border:none;
}

.text1 {
    color: #ffffff;
    background: #000000;
    font-size: 150px;
    font-weight: bold;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.text1::before {
    content: "Hungry Minds";
    position: absolute;
    mix-blend-mode: difference;
    filter: blur(3px);
    
}

.text2 {
    color: #ffffff;
    background: #000000;
    font-size: 150px;
    padding-left:30px;
    font-weight: bold;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.text2::before {
    content: "Minds";
    position: absolute;
    mix-blend-mode: difference;
    filter: blur(3px);
}

.neon-wrapper {
    display: inline-flex;
    filter: brightness(200%);
    overflow: hidden;
}

.neon-wrapper2 {
    display: inline-flex;
    filter: brightness(200%);
    outline: none;
    overflow: hidden;
}

.gradient1 {
    background: linear-gradient(112.82934665641051deg, rgba(248, 197, 91,1) 4.927083333333334%,rgba(248, 97, 55,1) 97.45659722222221%);
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
    mix-blend-mode: multiply;
}

.gradient2 {
    background: linear-gradient(112.82934665641051deg, rgba(240, 94, 7,1) 4.927083333333334%,rgba(91, 52, 162,1) 90.48784722222221%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
}

.dodge {
    background: radial-gradient(circle, white, black 35%) center / 25% 50%;
    position: absolute;
    top: -100%;
    left: -100%;
    right: 0;
    bottom: 0;
    mix-blend-mode: color-dodge;
    animation: dodge-box 3s linear infinite;
    border:none;
    outline:none;
}

@keyframes dodge-box {
    to {
        transform: translate(50%, 50%);
    }
}