@media (min-widtH:340px) and (max-width:740px){
    *{
        margin: 0px;
        padding: 0px;
        box-sizing: border-box;
    }

    body{
        width: 100vw;
        height: 100vh;
        /* background-color: salmon; */
         background: repeating-linear-gradient(45deg, #c6104d, #c6104d 20px, #5b0924 20px, #5b0924 40px);
        display: flex;
        justify-content: center;
        align-items: end;
    }

    .mains_inicio{
        width: 100%;
        height: 400px;
        background-color: #fff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;

    }
    .title_h1{
        width: 90%;
        height: auto;
        margin-top: 70px;
        text-align: start;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        /* border: 2px solid red; */
        color: #808080;
    }


    .title_h1 > h3{
        color: #808080;
        font-weight: 100;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 17px;
    }
    .div_buttons{
        width: 100%;
        height: auto;
        display: flex;
    }

    .div_buttons > button{
        width: 50%;
        height:90px;
        /* background-color: ; */
        border: 2px solid #c6104d;
        color: #c6104d;
        font-size: 20px;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        background-color: #fff;
    }
}