/*
*Variables importadas
*Estilos de cuerpo
*Estilos de elementos
*/
/*
*variables.
*/
@import "variables.css";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;500;700;800&display=swap');
/*estilos de cuerpo y bg*/
*{
    font-family: 'Poppins', sans-serif;
}
body{
    background-image: url(./../img/banner_fondo_astro_records.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    margin: 0%;
}
/*
*estilos de logotipo texto
*/
.logo-text{
    padding: 15px;
    height: 35px;
}
/*
*Estilos de contenido de main
*/
main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 85%;
}
.baner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/*Estilos del texto 1*/
.txt-simple  {
    position: relative;
    font-size: 95px;
    font-weight: 800;
    color: white;
    text-shadow: 0px 0px 3px #F4F4F4;
}

.txt-simple::before,
.txt-simple::after {
  content: " ";
  position: absolute;
  width: 55px;
  height: 20px;
  background-color: var(--text-bar-color);
}

.txt-simple::before {
  top: 50%;
  transform: translateX(-100%) translateY(-50%);
}
.txt-simple::after {
  top: 50%;
  transform: translateY(-50%);
}

/*Estilos del texto 2*/
.logo-img{
    position: relative;
    width: 300px;   
    filter: drop-shadow(0px 0px 30px rgba(0,0,0,.5)); /* sombra del logotipo */
    -webkit-filter: drop-shadow(0px 0px 30px rgba(0,0,0,.5));
    -moz-filter: drop-shadow(0px 0px 30px rgba(0,0,0,.5));
    z-index: 1;
    top: 10px;
}
.txt-bordes {
    text-align: center;
    font-size: 130px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px;
    -webkit-text-stroke-color: var(--text-gris);
    z-index: -1;
    filter: opacity(70%);
    -webkit-filter: opacity(70%);
    -moz-filter: opacity(70%);
    text-shadow: 0 2 100px rgba(255,255,255,.5), 0 0 100px rgba(255,255,255,.5);
    position: absolute;
    left: 50%;
    transform: translateX(-50%) ;
}

/*Espacio entre*/
.txt-simple, .txt-bordes{
    line-height: .8;
}

/********************************************
*Querys
*********************************************/
/*
*Pantallas<1199px
*/

@media (max-width: 1199px){
    .txt-simple {
        font-size: 90px;
    }
    .txt-simple::before,
    .txt-simple::after {
        width: 45px;
        height:  15px;
    }
    .txt-simple, .txt-bordes{
        line-height: .8;
    }
    .txt-bordes{
        font-size: 120px;
    }
    .logo-img{
        width: 300px;    
    }
}
/*
*Pantallas<991px
*/

@media (max-width: 991px){
    .txt-simple {
        font-size: 75px;
    }
    .txt-simple::before,
    .txt-simple::after {
        width: 35px;
        height:  12px;

    }
    .txt-simple, .txt-bordes{
        line-height: .8;
    }
    .txt-bordes{
        font-size: 90px;
    }
    .logo-img{
        width: 270px;    
    }
}
/*
*Pantalla<767px
*/

@media only screen and (max-width: 767px){
    .txt-simple {
        font-size: 55px;
    }
    .txt-simple::before,
    .txt-simple::after {
        width: 30px;
        height: 10px;

    }
    .txt-bordes{
        font-size: 70px;
    }
    .txt-simple, .txt-bordes{
        line-height: .8;
    }
    .logo-img{
        width: 200px;    
    }
}
/*
*Pantallas<575
*/

@media only screen and (max-width: 575px){
    .txt-simple {
        font-size: 42px;
    }
    .txt-simple::before,
    .txt-simple::after {
        width: 20px;
        height: 7px;

    }
    .txt-bordes{
        font-size: 55px;
        -webkit-text-stroke: 1px;
        -webkit-text-stroke-color: var(--text-gris);
    }
    .txt-simple, .txt-bordes{
        line-height: .8;
    }
    .logo-img{
        width: 190px;    
    }
}

/*
*Pantallas<479
*/

@media (max-width: 479px){
    .txt-simple {
        font-size: 35px;
    }
    .txt-simple::before,
    .txt-simple::after {
        width: 15px;
        height: 8px;
    }
    .txt-simple, .txt-bordes{
        line-height: .8;
    }
    .txt-bordes{
        font-size: 44px;
        height: auto;
        width:auto;
        -webkit-text-stroke: 1px;
        -webkit-text-stroke-color: var(--text-gris);
    }
    .logo-img{
        width: 200px; 
    }
}
/*
*Pantallas<374
*/
@media (max-width: 374px){
    .txt-simple {
        font-size: 20px;
    }
    .txt-simple::before,
    .txt-simple::after {
        width: 10px;
        height: 5px;
    }
    .txt-simple, .txt-bordes{
        line-height: .8;
    }
    .txt-bordes{
        font-size: 24px;
        height: auto;
        width:auto;
        -webkit-text-stroke: 1px;
        -webkit-text-stroke-color: var(--text-gris);
    }
    .logo-img{
        width: 100px; 
        top: 5px;
    }
}