.webIntro {
    width: 100%;
    height: auto;
    padding: 70px 0 30px 0;
}

.poweredBy {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 7px;
}

.poweredBy>h2 {
    color: var(--sTextColor);
    font-size: var(--fs14);
    letter-spacing: 0.5px;
    width: fit-content;
}

.poweredBy>img {
    width: 40px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

.webIntro>h1 {
    color: white;
    font-size: var(--fs34);
    margin: 25px 0 15px 0;
}

.webIntro>p {
    color: var(--sTextColor);
    font-size: var(--fs12);
    letter-spacing: 0.5px;
    line-height: 1.4;
}

@media only screen and (max-width: 768px) {
    .webIntro {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .poweredBy {
        justify-content: center;
    }

    .poweredBy>h2 {
        text-align: center;
    }

    .webIntro>h1 {
        text-align: center;
        font-size: var(--fs28);
        width: 90%;
    }

    .webIntro>p {
        text-align: center;
        width: 90%;
    }
}

@media only screen and (max-width: 576px) {
    .webIntro>h1 {
        font-size: var(--fs24);
    }

    .poweredBy>h2 {
        font-size: var(--fs12);
        font-weight: 700;
    }
    
    .poweredBy>img {
        width: 37px;
    }
}