* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.contenedorAsis {
    display: flex;
    height: auto;
    background-size: cover;
    width: 100%;
    background-repeat: no-repeat;
    background-image: url(../images/corona.jpg);
    flex-wrap: wrap;
}
.sectAccAsis {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 10px;
}
.formularioAsis{
    display: flex;
    max-width: 390px;
}
.sectAccAsis h2 {
    font-family: serif;
    font-weight: 500 ;
    font-size: 29px ;
    color: #516ca8 ;
    line-height: 2em ;
    text-align: left ;
    text-shadow: 0.03em 0.03em 0em #000000 ;
}
.sectAccAsis p {
    font-family: 'Poppins',Helvetica,Arial,Lucida,sans-serif ;
    font-size: 20px ;
    color: #6b774e ;
    line-height: 32px ;
    text-align: left ;
    text-shadow: 0.03em 0.03em 0em #000000 ;
    padding-bottom: 20px;
}
.sectAccAsis a {
    font-family: 'Poppins',Helvetica,Arial,Lucida,sans-serif;
    font-size: 20px;
    color: white;
    line-height: 32px;
    text-align: left;
    text-shadow: 0.03em 0.03em 0em #000000;
    text-decoration: none;
}
.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.btn {
    color: white;
    background-color: #a0ab87;
    border-radius: 30px;
    padding: 0px 40px;
    border: 1px solid #6b774e;
    /* text-transform: uppercase; */
}
.btn:hover {
    color: #a0ab87;
    background-color: #344b6d;
}
/* footer */
.footer{
    display: flex;
    height: 100px;
    background-color: #cbd2badb;
    justify-content: space-evenly;
    align-items: center;
    padding: 55px 40px;
}
.footer h3{
    font-family: monospace;
    color: darkgrey;
}
.footer a{
    text-decoration: none;
}
.contFooter{
    /* padding: 55px 15px; */
}
.iconFooter{
    height: 25px;
}
@media (min-width:576px){
    .formularioAsis{
        max-width: 520px;
    }
}
@media(min-width: 768px){
    .formularioAsis{
        max-width: 640px;
    }
    .sectAccAsis h2 {
        font-size: 40px ;
    }
    .sectAccAsis p {
        font-size: 22px ;
    }
}
@media(min-width: 1024px){
    .sectAccAsis h2 {
        font-size: 65px ;
    }
    .sectAccAsis p {
        font-size: 40px ;
    }
}

