:root {
    --Colorprincipal: #e64a19;
    --Colorsegundario: #000000; 
    --Colortercero: #fafafa; 
    --Fuenteprincipal: "Bona Nova SC", serif;
    --Fuentesegundaria: "Pacifico", cursive;
    --FuenteOpcional: "Lobster", sans-serif;
}

html {
    font-size: 62.5%;
    box-sizing: border-box;
}
body {
    font-size: 16px; /*1 rem = 10p*/
    background-image: url("../img/LocalEntrada.jpg");
    background-color: rgb(50,50,50);
    background-blend-mode: soft-light;
    background-repeat: no-repeat;
    background-position: center center; 
    background-size: cover;
    background-attachment: fixed;
}


*, *:before, *:after {
    box-sizing: inherit;
}

@media (min-width: 480px) {
    body {
        background-size: cover;
    }
}

/*importante lo anterior para manejar el tamaño en rem*/

.tituloprincipal {
    font-size: 7rem;
    text-align: center;
    color: var(--Colorprincipal);
    -webkit-text-stroke: 0.1rem var(--Colorsegundario);
    font-family: var(--Fuenteprincipal);
    margin-bottom: 0;
}
.spanTitulo {
    font-size: 4rem;
    color: var(--Colortercero);
    -webkit-text-stroke: 0.1rem var(--Colorsegundario);
    font-family: var(--Fuenteprincipal);
}
.subtitulo {
    font-size: 3rem;
    font-family: var(--Fuentesegundaria);
    text-align: center;
    margin: 0 auto;
    color: var(--Colortercero);
}
.direction {
    font-size: 2rem;
    text-align: center;
    font-family: var(--Fuenteprincipal);
    font-weight: bold;
    color: var(--Colortercero);
    -webkit-text-stroke: 0.04rem var(--Colorsegundario);
}

.contenedor {
    max-width: 120rem;
    margin: 0 auto;
}

.contenedor img {
    text-decoration: none;
    width: 5rem;
    height: 5rem;
}
.Redessociales {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.hero {
    position: relative;
}
.titulo-hero{
    position: absolute;
    left: 2rem;
    right: 2rem;

}
.contenido-hero{
    position: absolute;
    top: 35rem;
    left: 2rem;
    right: 2rem;
}
.fin-hero{
    position: absolute;
    top: 70rem;
    right: 2rem;
    left: 2rem;
}

@media (min-width: 480px) {
    .Redessociales{
        flex-direction: row;
        justify-content: center;
    }
}
/*Vista IPAD*/
@media (min-width: 768px) {
    .hero {
        position: relative;
    }
    .titulo-hero{
        position: absolute;
        left: 20rem;
        right: 20rem;
    
    }
    .contenido-hero{
        position: absolute;
        top: 30rem;
        left: 20rem;
        right: 20rem;
    }
    .fin-hero{
        position: absolute;
        top: 55rem;
        right: 20rem;
        left: 20rem;
    }
}
/*Vista LAPTOP*/
@media (min-width: 1000px) {
    .hero {
        position: relative;
    }
    .titulo-hero{
        position: absolute;
        left: 20rem;
        right: 20rem;
    
    }
    .contenido-hero{
        position: absolute;
        top: 28rem;
        left: 20rem;
        right: 20rem;
    }
    .fin-hero{
        position: absolute;
        top: 49rem;
        right: 20rem;
        left: 20rem;
    }
}

/*Vista MACBOOK*/
@media (min-width: 1440px) {
    .hero {
        position: relative;
    }
    .titulo-hero{
        position: absolute;
        left: 20rem;
        right: 20rem;
    
    }
    .contenido-hero{
        position: absolute;
        top: 35rem;
        left: 20rem;
        right: 20rem;
    }
    .fin-hero{
        position: absolute;
        top: 65rem;
        right: 20rem;
        left: 20rem;
    }
}
