* {
    margin: 0;
  box-sizing: border-box;
}
body {
    text-align: center;
    font-family: sans-serif;
  
}

.header {
    background-color: transparent;
    height: 80px;
    position: fixed;
    width: 100%;
    z-index: 100;
    top: 0;
    left: 0;
    

}

.nav {
    display: flex;
  justify-content: space-between;
  max-width: 992px;
  margin:  0 auto;
}

.nav_link {
    color: white;
    text-decoration: none;

}
.T1 {
  
    text-decoration: none;
    padding-top: 2.8rem;
}
.logo  {
    font-size: 30px;
    font-weight: bold;
    padding: 0 40px;
    line-height: 80px; 
    color: #fff;
    text-transform: uppercase;
    
}

.nav_menu {
    display: flex;
    margin-right: 40px;
    list-style: none;


}
.titulo {
    margin-bottom: 40px;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
}

.nav_menu_item  {
    font-size: 18px;
    margin: 0 10px;
    line-height: 80px; 
    text-transform: uppercase;
    width: max-content;
    
    
}
.nav_menu_link {
    padding: 8px 12px;
    border-radius: 3px;

}
.nav_menu_link:hover,
.nav_menu_link_active{
background-color: #c41212; 
transition: 0.5s;
}
.nav_toggle{
    color: white;
    background: none;
    border: none;
    font-size: 30px;
    padding: 0 20px;
    line-height: 60px;
    cursor: pointer;
    display: none;
}

.titulo1 {
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
}
.canciones {
	list-style-type: number;
    font-family: Arial, Helvetica, sans-serif;
	background-color: #FFFFFF;
	color: #000000;
}
a {
	text-decoration: none;
	color: #000000;
}
Link{
	text-decoration: none;
	color: #000000;
}
.background {
    background-image: url('../img/prueba1.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh; /* Establece la altura de la imagen al 100% del viewport height */
    width: 100%; /* Establece el ancho de la imagen al 100% del contenedor */
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .Canciones {
    list-style: none; 
    padding: 0; 
    margin: 0; 
  }
  .Canciones li {
    margin-bottom: 10px; 
    font-size: 16px; 
  }
  .Canciones a {

    font-weight: bold; 
    margin-right: 5px; 
  }
  
@media(max-width: 768px){
    
    .header {
       
        height: 60px; 
    
    }
    
    .logo  {
        font-size: 25px;
        font-weight: bold;
        padding: 0 20px;
        line-height: 60px; 
        
    }
    
    .nav_menu {
        flex-direction: column;
        align-items: center;
        margin: 0;
        background-color: #2c3e50f3;
        position: fixed;
        top: 60px;
        width: 100%;
        padding: 20px 0;
        height: calc(100% - 60px);
        overflow-y: auto;
        left: 100%;
        transition: left 0.3s;
    }
    .nav_link {
        color: white;
        text-decoration: none;
    
    }
    
    .nav_menu_item  {
        line-height: 70px; 
       
        
        
    }
    
    .header.header_color {/* Modificar el Index.js en caso de  implementarlo */
        background-color:   rgb(129, 8, 8);   /* Cambia este valor al color que desees */
        transition: right 0.3s;
        right: 100%;
      }
      
    .navmobile {/* Son  Las Letras De las palabras Inicio, Alabanza, Nosotros, etc */
        color: #fff;
        text-shadow:
          3px 3px 2px #000,
          -3px 3px 2px #000,
          -3px -3px 0 #000,
          3px -3px 0 #000;
    }
    .nav_menu_link:hover,
    .nav_menu_link_active {
    background: none; 
    color: #b20909fa;
    }
    .nav_toggle {
        display: block;
    }
    .nav_menu_v {
        left: 0;

    }
}

.nav_toggle:focus:not(:focus-visible) {
  outline: none;
}
