/* editando las etiquetas  */
body {
    margin: 0;
    padding: 0; 
    font-size: 16px;  
    font-family: 'arial', sans-serif;
}
header{
    display: flex;
    justify-content: space-between;
    background-color: white;
    padding: 6px 5%;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.25);
}
header div img {
 height: 40px;
}
.fondoapp{
    background-image: url("./img/localcamacho1.jpg"); /* The image used */
    background-color: #cccccc; /* Used if the image is unavailable */
    height: 68vh; /* You must set a specified height */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    padding: 4%;
}
.grupoareapp{
    background: rgba(237,234,234,0.6);
    border-radius: 5px;
}
.welcome{
    background: white;
    margin: 15px 20px;
    font-size: 21px;
    color: #38395b;
    display: inline-block;
    text-align: center;
    width: 96%;
    padding: 1% 0;
    border-radius: 10px;
}
.grupoapp{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 1% 0 4% 0;
}
.areapp{
    width: 30%;
    background-color: white;
    border-radius: 10px;
}
.areapp figure{
    border-radius: 8px 8px 0px 0px;
    color: white;
    background-image: linear-gradient(180deg, #A0D0FF 0%, #D0E8FF 100%);
    margin: 0px;
    height: 160px;
    text-align: center;
}
.areapp figure img{
    height: 160px; 
}
.areapp div a{
    border: 2px solid #1AA19B;
    border-radius: 6px;
    color: #1AA19B;
    display: block;
    text-align: center;
    font-size: 18px;
    padding: 3% 0;
    margin: 10px 15px 30px 15px;
}
.areapp div a:hover {
    color: white;
    background-color: #1AA19B;
}
.descripcion {
    font-size: 14px;
    margin: 20px;
    height: 48px;
}
footer{
    background-color: #38395b;
    height: 40px;
    padding: 0 5%;
}
footer div{
    display: inline-block;
    text-align: right;
    width: 100%;
    color: white;
    margin-top: 10px;
    font-size: 12px;
}
@media screen and (max-width: 480px){
.fondoapp {
    height: 100%;
}    
.areapp{
    width: 86%;
    margin-bottom: 20px;
    }
}
