@import url('https://fonts.googleapis.com/css2?family=Climate+Crisis&family=Inconsolata:wght@300&display=swap');
.txt-main strong{
    font-weight: bolder;
    font-size: 40px !important;
}

#pro{
    font-family: 'Climate Crisis', cursive;
    font-weight: lighter;

}
.txt-main {
    font-size: 38px !important;
}
.txt-b{
    font-weight: bold;
}

.box-main{
    display: flex;
    flex-direction: column;
}

.box-pro{
    width: 100%;
    height: auto;
    padding: 2% 0;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    animation: anima 3s infinite;
    background-color: rgba(0,0,0,0.2);
}

.btn-chat-wpp{
    width: 150px;
    height: 30px;
    background-color: rgb(255, 72, 0);
    color: white;
    border: none;
    text-transform: uppercase;
    border-radius: 5px;
}
.btn-chat-wpp:hover{
    transition: 2s;
    background-color: rgb(231, 193, 68);
}

@keyframes anima{
    0%{
        border: 2px dashed rgb(0, 0, 0);
    }
    50%{
        border: 2px dashed rgb(255, 255, 255);
    }
    100%{
        border: 2px dashed rgb(252, 218, 70);
    }
}