.typing{
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgb(233 233 233);
    padding: 15px 20px;
}
.typing .static-word{
    color:black;
    font-size: 25px;
    text-align: center;
}
#typed{
    color:red !important;
    font-size: 25px;
    font-weight: 500;
}
@media(max-width:991px){
    .typing{
        width: 100%;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px;
        background: rgb(233 233 233);
        padding: 15px 20px;
    }
    .typing .static-word{
        color:black;
        font-size: 18px;
        text-align: center;

    }
    #typed{
        color:red !important;
        font-size: 18px;
        font-weight: 500;
    }
}
@media(max-width:600px){
    .typing{
        width: 100%;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px;
        background: rgb(233 233 233);
        padding: 15px 20px;
    }
    .typing .static-word{
        color:black;
        font-size: 15px;
        text-align: center;

    }
    #typed{
        color:red !important;
        font-size: 15px;
        font-weight: 400;
    }
}