@import 'https://fonts.googleapis.com/css?family=Oswald:300,400,700';



body {
    
    font-family: 'Oswald', sans-serif;
    background-color: rgba(178, 178, 178, 0.47);
    width: 100%;
    margin: auto;
}

header{
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    background: linear-gradient(rgba(178, 178, 178, 0.35),#95c11f)
}

h1 {
    font-weight: 700;
    font-size: 80px;
    color: white;
    display: inline-block;
}

h2{ font-weight: 400;
    font-size: 50px;
    color:white; 
    display: inline-block;
    margin-left: 20px;
}

img {
    height: 300px;
    border-radius: 50%;
    margin: 0 30px 0 30px;
}

nav {
    text-align: center;
    background: #95c11f;
    width: 100%;
    display: flex;
    justify-content:space-around;    
}

.boton {
    padding: 70px 0px 70px 0px;
    
}

.boton:hover{
    background: linear-gradient( #95c11f, rgba(178, 178, 178, 0.35));}

.nombre{
    text-decoration: none;
    color: black;
    font-size: 20px;
    margin-top: 15px;
}

.nombre:hover{
    color: #e6007e;
}

nav>h4 { font-weight: 300;
           font-size: 20px;
           
}



h3 {font-weight: 400;
    font-size: 15px;
    display: inline;
}

h4 {font-weight: 700;
    font-size: 19px;
}


h6 {
    margin: 10px 300px 0px 300px;
    font-size: 18px;
    font-weight: 300;
}


section {
    margin: 100px 50px 0px 50px;
    font-weight: 300;
    display: flex;
    justify-content:space-between;
    background: #d1d1d1;
}



footer {
    font-weight: 300;
    margin: 50px 300px 20px 300px;
    font-size: 14px;
}

a {
    text-decoration:none;
}

.aplicacion { 
    text-align: center;
    margin-left: 450px;
    margin-right: 450px;

}

.logo {
    border-radius: 0%;
    margin: 100px 0px 0px 0px;
    
}

.logo:hover {
    
}


.descripcion {
    width: 50%;
    padding: 30px;
   
}

.informacion {
    width: 50%;
    padding: 30px;
}

.mapa {
    width: 10%;
    margin: 0 auto;
    margin-top: 25px;
    text-align: center;
    background-color: #e6007e;
}

.mapa{
    color: white;
}
    



/* ipad */


@media screen and (max-width:768px) {
    
    .contenedor {
        width: 768px;
    }
    
    nav {
        
        flex-direction: column;
        background: yellow;
    }
    
    .boton {
        width: 100%;
        height: 135px;
    }
    
    .boton>img {
        height: 150px;
        width: 150px;
    }
    
    .aplicacion {
        width: 768px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
    
    .descripcion {
        margin: 30px 0 0 0;
        padding: 0;
    }
    
    .informacion {
        margin: 70px 0 0 0;
        padding: 0;
    }
    
    section {
        flex-direction: column;
        align-items: center;
    }
    
    footer {
        margin: 0 auto;
        padding: 50px 50px 0px 50px;
    }
}


/* celular */

@media screen and (max-width:320px) {
    
    .contenedor {
        width: 320px;
    }
    
    
    nav {
        padding: 0 auto;
        display: flex;
        align-items: center;
    }
    
    header{
        flex-direction: column;
    }
    
    h1 {
        font-size: 50px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    .aplicacion {
        width: 320px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
    
    .logo {
        width: 50%;
        height: 50%;
}
    
    .descripcion {
        width: 100%;
    }
    
    .informacion {
        width: 100%;
    }

}

    

    

    
    
    