:root {
    --blanco:#ffffff;
    --oscuro:#212121;
    --primario:#FFC107;
    --secundario: rgb(142, 210, 241);
    --gris: #757575;
    --grisclaro: #dfe9f3;
}

/* ------ GLOBALES------ */
html {
    box-sizing: border-box;  /* Hack para Box Model */
}

body {
    background-image: url(../img/fondoweb02.jpg);
    background-repeat: no-repeat;
    background-size:cover;
    position: relative;
    box-sizing: border-box;  /* Hack para Box Model */
    margin-bottom: 2rem;
}


.encabezado {
    display: flex;
    align-items:flex-start;
}

h1 {
    font-family:Arial Black;
    font-size: 130%;
    color: rgb(142, 210, 241);
    text-shadow: 5px 5px 4px black; 
    margin-left: 1rem;
}
@media (min-width: 768px) { 
    h1 {
        font-size:370%;
    }
}

h2 {
    font-family:Arial Black;
    font-size: 150%;
    color: rgb(142, 210, 241);
    text-shadow: 5px 5px 4px black;
    text-align: center;
    
}

p {
    color: white; 
    font-family: Arial, Helvetica, sans-serif;
    font-size: .8rem;
    text-align: center;
 }
 
@media (min-width: 768px) { 
    h2 {
        font-size:270%;
    }
    p {
        font-size: 2rem;
    }

}


.navegacion-principal {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) { 
    .navegacion-principal {
        flex-direction: row;
        justify-content: space-between;
    }
}

.menupral {
    background-color: rgb(0 0 0 / 40%);
}

.navegacion-principal a {
    display: block;
    text-align: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1rem;
}

.navegacion-principal a:hover {
    background-color: var(--primario);
    color: var(--oscuro);
}

.nav-materiales{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(0 0 0 / 40%);
    margin-top: 2rem;
}    

.sombra1 {
    -webkit-box-shadow: 15px 14px 28px 1px rgba(0,0,0,0.75);
    -moz-box-shadow: 15px 14px 28px 1px rgba(0,0,0,0.75);
    box-shadow: 15px 14px 28px 1px rgba(0,0,0,0.75);
}

.tienda {
    background-image: url(../img/tienda.png);
    background-repeat: no-repeat;
    background-size: cover;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2rem;
    text-align: center;
    text-shadow: 3px 3px 2px black;
    color: rgb(88, 147, 235);
    width: 450px;
    height: 350px;
    display: flex;
    flex-direction: row;
    align-items:flex-end;
    justify-content: center;
}

@media (min-width: 768px) { 
    .temple {
        display: grid;
        grid-template-columns: 50% 50%;
        column-gap: 1rem;
    }
}

.imagenes {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.imagenes img {
    margin-right: 2rem;
}

.somos {
    background-image: url(../img/tienda.png);
    background-repeat: no-repeat;
    width: 350px;
    height: 490px;
    margin-left: 0rem;
}

@media (min-width: 768px) { 
    .somos {
        margin-left:20rem;
        width: 700px;
    }
}

.fondo {
    background-color: rgb(0 0 0 / 40%);
    width: 349px;
    height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) { 
    .fondo {
        width: 641px;
    }
}

.somos2 {
    font-family: arial;
    font-size: 1.2rem;
    text-shadow: 5px 5px 4px black;
    text-align: justify;
    margin: 2rem;
    
}

@media (min-width: 768px) { 
    .somos2 {
        font-size: 2rem;        
    }
}

