/*custom propeties---------globales*/
:root{
    --blanco: #ffffff;
    --oscuro: #212121;
    --primario: #ffc117;
    --secundario: #0097a7;
    --gris: #4ed64e;
    --Color: #ffffffd3; 
    
   }
   /*CSSMATIC PARA DEGRADADOS*/
/*siempre se pone-------tipografia*/
html{
    font-size: 62.5%;
    box-sizing: border-box;
}
*, *:before, *:after{
    box-sizing: inherit;
}/*se lo pone a todooos*/

body{
    font-size: 16px;
    font-family: 'Krub', sans-serif;
    background-image: linear-gradient(to top, #dfe9f3 0%, var(--blanco) 100%);

}
.contenedor{
    display:flex;
    max-width: 100rem;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    /*margin: top right bottom left*/
}
 .left {
    flex: 1; /* Ocupa el espacio disponible */
    padding: 20px; 
}
.right {   
    flex: 1; /* Ocupa el espacio disponible */
    padding: 20px;   
}
.boton{
    background-color: var(--secundario);
    color: var(--blanco);
    padding: 1rem 3rem;
    margin-top: 1rem;
    font-size: 2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 0.5rem;
    border: none;
}

/*siempre se pone-----titulos*/
/*1rem = 10px*/
h1{
    color:var(--obscuro);
    font-size: 3.8rem; 
    /*font-family: Arial, Helvetica, sans-serif;*/
    
}
h1 span{
    font-size: 2rem;
    
}

h2{
    font-size: 2.8rem;
}
h2{
    font-size: 1.8rem;
}

h1, h2, h3{
    text-align: center;
}


.nav-bg{
    background-color: var(--secundario);
}
.navegacion-principal{
   
    display: flex;
    flex-direction: column;
    align-items: center;
}
/*480px telefono
768px tablet
1140px y 1400px compu*/

@media (min-width: 768px) {
    .navegacion-principal{
        justify-content: space-between;
        flex-direction: row;
    
    }
      
}
.sombra{
    -webkit-box-shadow: 0px 0px 49px 0px rgba(107,107,107,0.42);
    -moz-box-shadow: 0px 0px 49px 0px rgba(107,107,107,0.42);
    box-shadow: 0px 0px 49px 0px rgba(107,107,107,0.42);
    background-color: var(--blanco);
    padding: 2rem;
}
.navegacion-principal a {
    display: block;
    text-align: center;
    color: var(--blanco);
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
    padding: 1rem;
    width: 90%;
    text-align: center;
}
@media (min-width: 480px) {
    .boton{
        width: auto;
        
    }
      
}
.boton:hover{
    cursor: pointer;
}

.navegacion-principal a:hover{
    background-color: var(--primario);
    color: var(--obscuro);
}


.input-text{
        width: 100%;
        border: none;
        padding: 1.5rem;
        border-radius: 0.5rem;
        
}

/*footer*/
.footer{
    text-align: center;
    
}


