@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto';
}

.contenedor{
    padding: 50px;
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
}

.logos{
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 100px;
}

.texto2{
    background-color: white;
    font-family: sans-serif;
    padding: 55px;
    letter-spacing:1px;
    font-size: 17px;
    color: rgba(0,0,0,.7);
    line-height: 2;
    text-align: center;
    font-weight: 400;
    box-shadow: 2px 2px 5px #999;
}

.botones{
    margin-top: 80px;
    display: flex;
    justify-content: space-around;
}

.boton a{
    display: block;
    width: 130px;
    text-align: center;
    padding: 10px;
    background-color: rgb(255, 165, 0);
    font-size: 16px;
    color: aliceblue;
    text-decoration: none;
    border-radius: 20px
}

.boton a:hover{
    background-color: #fff;
    transition: 0.2s;
    border: 1px solid slategray;
    color: slategray
}




@media screen and (max-width: 720px){
    
    
    .boton a{
        font-size: 27px;
    }
    
    .contenedor{
        padding: 10px
    }
    
    
    
    
    
    
}









