body{
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 16px;
    background: #eee;
}
main{
    width:95%;
    margin: 4% auto;
    /* display: flex; */
}
.painel{
 width: 1250px;
 height: 650px;
}
.painel img{
    width: 100%;
    height: 100%;
}
.main__p{
    font-size: 1.5em;
   
}
.main__title{
   margin-top: 0;
}
.main-col{
    
    flex-basis:45%;
    flex-direction:row ;
    padding:30px 2px;
    margin: 2%;
}
.main-col a{
    margin-top: 500px;
}
.main-col .btn{
    text-decoration: none;
    font-weight: bold;
    text-transform:uppercase;
    background:blue;
    padding: 10px 15px;
    color:white;
    border: 1px solid black;
    border-radius: 5px;
    transition: 1s;
}
.btn:hover{
    opacity: .9;
    background:white;
    color:blue
}
.ul-items{
    font-size: 1.2em;
    margin-bottom: 50px;
}
li{
    list-style: none;
    line-height: 1.5;
}
@media screen and (max-width:700px){

     main{
        width:95%;
        margin:auto
     }
     .painel{
         width: 90%;
         height: 100%;
     }
    .solo{
       background:red
    }
    .main-col img{
        display:none
        
    }
        
}

