html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: url('../site/fondo.jpg'), #020523;
	background-size: cover;
    background-position: center;
    z-index: -1;
}

.content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}




.botones {
      display: flex;
    flex-direction: column; 
    align-items: center; 
    gap: 10px; 
  }
  
  .boton {
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    padding: 8px 18px 8px 14px; 
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
    white-space: nowrap;
    font-family: "Roboto Condensed", sans-serif;
  }
  
  .boton-tiktok {
   background-color: #000000;
  }
  
  .boton-spotify {
   background-color: #1DB954;
  }
  
  .boton-tiktok:hover {
   opacity: 0.9;
  }
  
  .boton-spotify:hover {
   opacity: 0.9;
  }
  
  
   .boton i {
      font-size: 24px;
      margin-right: 8px;
    }
  
  

    h1.description {
	 font-family: "Raleway", sans-serif;
      font-size: 50px;
      margin-bottom: 20px;
	  color:#e6e6e6;
	  font-weight:200;
	  text-align:center;
	  padding:10px;
    }
	
	
	.base-lema{
	 padding:30px;	
	}
	
	.lema{
      font-size: 21px;
	  font-style: oblique;
	  color:#e6e6e6;
	  text-align:center;
	  padding-bottom:5px;
	 
    }

	
	
	
  @media (max-width: 768px) {
   
     h1.description {
      font-size: 40px;
    }
   
   
  }	