@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');


@import url(validar.css);


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body{
    font-family: 'Open Sans', sans-serif;
}
h3{
    color: #3C3C3C;
    padding: 10px;
}

.contenedor{
    widows: 98%;
    margin: auto;
    
}

section{
    width: 100%;
    margin-bottom: 25px;
    
}

#info{
    background: #FFFFFF;
    color: #3C3C3C;
    text-align: center;
    padding: 20px;
}

#info .contenedor{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.alter{
     
    max-width: 280px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    
}
 img{
     margin: 20px;
    width: 200px;
     height: 250px;
    border-radius: 10%;
    
}


button{
    
    background-color: #78C800;
    border: none;
    color: white;
    width: 120px;
    height: 60px;
    margin: 5px;
   
    
    
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 12px;
    font-family: 'Open Sans', sans-serif;
    box-shadow: 0 8px 16px 0 rgba(0,0,0, 0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    cursor: pointer;
    
    
}

button:hover{
    background-color: #F7A81E;
}


@media(min-width:480px){
    .info{
        width: 40%;
    }
}

@media(min-width:1024px){
    .info{
        width: auto;
    }
    
}