.capsalera {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px; /* ajusta el tamaño */
    height: auto;
  }
body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}


#capsal {
    align-items: center;
    padding: 20px;
    width: 100%;
}

#logo {
    border-radius: 50%;
    width: 120px;
    height: auto;
    margin-right: auto; 
}



#actiu {
    width: 90%;
    max-width: 600px;
    padding: 20px;
    font-size: 25px;
    font-weight: bold;
    background-color: #15ff00;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#titol {
    background-color: transparent;
    padding: 10px;
    border-radius: 5px;
    color: white;
    width: 100%;
    text-align: center;
    font-size: 24px;
}

#portada {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}


#playlist {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

#llista {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0;
    width: 100%;
    max-width: 900px;
}
#infoboto{
    background-color: #c700ff;
}
#infolloc{
    position:fixed;
    top:50%;
    left:50%;
    transform:white;
    padding:20px;
    border:2px solid black;
    box-shadow:0px 0px 10px gray;
    z-index: 1000;
}
#informacio{
    text-align:center;
}

#llista li {
    flex: 1 1 250px; 
    padding: 15px;
    list-style: none;
    text-align: center;
    font-size: 18px;
    background-color: #9a5dc0;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, background-color 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid transparent;
}


#llista li:hover {
    background-color: #282828;
    transform: scale(1.05);
    border-color: #c700ff;
}


#llista img {
    max-width: 150px;
    height: auto;
    padding: 10px;
    border-radius: 10px;
    transition: transform 0.3s;
}

#llista li:hover img {
    transform: scale(1.1);
}


#llista p {
    font-size: 18px;
    background-color: #15ff00;
    color: black;
    padding: 10px;
    border-radius: 5px;
    width: 80%;
    font-weight: bold;
}


.nom {
    font-size: 15px;
    color: white;
    position: relative;
    top: -10px;
}
#contenido{
    display:none;
}
#splash-screen{
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display:flex;
    justify-content: center;
    align-items: center;
    z-index:9999;
    opacity: 1;
    transition: opacity 1s ease-out;
}
#splash-screen img{
    width:200px;
}
.app-content{
    padding: 20px;
    text-align: center;
}






