body {
    background-color: #141414;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body::-webkit-scrollbar {
    -webkit-appearance: none;
    background-color: transparent;
}

body::-webkit-scrollbar:vertical {
    width:10px;
}

body::-webkit-scrollbar-button:increment,body::-webkit-scrollbar-button {
    display: none;
} 

body::-webkit-scrollbar:horizontal {
    height: 10px;
}

body::-webkit-scrollbar-thumb {
    background-color: #3dadff;
    border-radius: 20px;
    border: none;
}

body::-webkit-scrollbar-track {
    border-radius: 10px;  
}

.busqueda {
    display: flex;
    flex-wrap: wrap;
}

.busquedas {
    border-radius: 5px;
    max-width: inherit;
    width: 100%;
    background-color: #3dadff;
    position: absolute;
    height: auto;
    max-height: 300px;
    overflow-y: scroll;
    display: none;
    transition: all 1s ease;
}


.busquedas::-webkit-scrollbar {
    -webkit-appearance: none;
    /* esta linea permite cambiar los estilos del scrollbar */
}

.busquedas::-webkit-scrollbar:vertical {
    width:10px;
}

.busquedas::-webkit-scrollbar-button:increment,.busquedas::-webkit-scrollbar-button {
    display: none;
} 

.busquedas::-webkit-scrollbar:horizontal {
    height: 10px;
}

.busquedas::-webkit-scrollbar-thumb {
    background-color: #797979;
    border-radius: 20px;
    border: none;
}

.busquedas::-webkit-scrollbar-track {
    border-radius: 10px;  
}

.busquedas ul {
    width: 100%;
    text-align: left;
    align-items: center;
    padding: 0;
    margin: 0;
}

.busquedas ul li {
    width: auto;
    text-align: left;
    display: block;
    justify-content: left;
    color: white;
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid white;
    background: inherit;
}

.busquedas ul:last-child {
    border-bottom: 1px solid #3dadff;
}

.busquedas ul li:hover {
    background: #76c6ff;
}

.bienvenida {
    height: 450px;
    top: 0;
    margin: 0px;
    padding: 0;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(https://images.unsplash.com/photo-1505751171710-1f6d0ace5a85?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=750&q=80);
    background-position: center;
    background-size: cover;
}

.gif {
    width: auto;
    height: 300px;
}

.bienvenida h1 {
    font-size: 40px;
    color: #3ba3ec;
    text-align: center;
    text-shadow: 2px 2px 20px rgb(0, 255, 200);
}

.bienvenida h3 {
    text-align: center;
}

.bienvenida .titulos {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.bienvenida .titulos h1 {
    font-size: 50px;
}

.sinResults {
    font-size: xx-large;
    color: white;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.degradado {
    background: linear-gradient(to top, #141414, transparent 50%);
    height: 100px;
    width: 100%;
    margin-top: -100px;
}

@media screen and (max-width:700px){
    .bienvenida {
        flex-wrap: wrap;
    }
    .gif {
        display: none;
    }
    .bienvenida .titulos {
        width: 100%;
        padding: 0px 20px 20px 20px;
    }
    .bienvenida .titulos h1 {
        font-size: xx-large;
    }
}

.load {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: #131313;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.load img {
    width: 200px;
}   

nav ul li a {
    color: rgb(228, 228, 228);
    text-decoration: none;
}

.load {
    display: none;
}

.portada {
    height: auto;
}

.contenido {
    padding: 3%;
    background: linear-gradient(to top, #3dadff, transparent 50%);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    grid-gap: 30px;
    justify-content: center;
}

.cancion {
    cursor: pointer;
    margin: 0;
    height: 270px;
    background-color: #2b2b2b;
    border-radius: 7px;
    display: flex;
    flex-wrap: wrap;
    transition: all .2s;
}

.cancion:hover {
    transform: scale(1.1, 1.1);
}

.cancion .imagen {
    width: 100%;
    height: 60%;
    object-fit: cover;
    border-radius: 10px;
    transition: all .5s;
}

.cancion .detalles {
    width: 100%;
    word-wrap: break-word;
    margin: 0;
    color: white;
    text-align: center;
}

.cancion .detalles span {
    color: rgb(151, 150, 150);
}

.divBuscar {
    width: 90%;
    max-width: 350px;
    margin: 3% 0% 0% 3%;
}

.fondoBuscar {
    border-radius: 100px;
    background-color: white;
    padding: 10px;
}

.fondoBuscar .buscarInput {
    width: 80%;
    border: 0;
    color: black;
    font-size: large;
    background-color: none;
    outline: none;
    margin-left: 5px;
}

@media screen and (max-width:470px){
    .contenido {
        padding: 0;
        grid-template-columns: 1fr 1fr;
        grid-gap: 5px;
    }
    .divBuscar {
        margin-bottom: 3%;
    }
}

.reproductor {
    background-color: #303030;
    width: 100%;
    height: auto;
    position: fixed;
    bottom: -100;
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: auto;
    background-color: #303030;
}

.preview {
    display: flex;
    justify-content: center;
    align-items: center;

}

.reproductor audio {
    width: 90%;
    max-width: 500px;
    margin: 10px;
    outline: none;
}

.imagenSong {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;

}

.imagenSong .portadaSong {
    width: 80px;
    height: 80px;
    margin: 10px;
    background-image: url(../img/portada_default.jpg);
    background-size: cover;
    background-position: center;
}

.reproductor .artistaSong {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:920px){
    .reproductor .artistaSong {
        display: none;
    }
}

@media screen and (max-width:620px){
    .reproductor .imagenSong .tituloSong {
        display: none;
    }
    .reproductor {
        grid-template-columns: 0.5fr 1fr;
    }
}

.degradado3 {
    background: linear-gradient(to top, #141414, transparent 100%);
    height: 10px;
    width: 100%;
    margin-top: -10px;
}

@media screen and (max-width:300px){
    .preview audio {
        width: 100%;
        margin: 0;
    }
}

.botonExit {
    color: white;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.detallesD {
    width: auto;
    color: white;
    padding: 30px;
    height: auto;
    background: linear-gradient(to right, #2154a0, transparent 100%);
    margin-top: 30px;
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-template-rows: auto;
    grid-gap: 20px;
}

.detallesD div h1 {
    font-size: 50px;
}

.detallesD .img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.detallesD div img {
    width: 250px;
    height: 250px;
}

.botones {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: left;
}

.botonY, .botonS {
    width: 100%;
    padding: 3px;
    height: 30px;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.botonS:hover, .botonY:hover {
    text-decoration: underline;
}

.botones a {
    color: white;
    text-decoration: none;
}

.botones div a i {
    font-size: x-large;
}

.botonY a i {
    color: red;
}

.botonS a i {
     color: #1db954;
}

footer {
    padding: 3%;
    color: gray;
    background-color: #141414;
}

footer .contenidoFooter {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    grid-template-rows: auto;
}

footer .contenidoFooter .logoPage img {
    width: 200px;
}

.contenidoFooter .logo img {
    width: 150px;
}

.contenidoFooter .logo img {
    background: gray;
    padding: 3px;
    border-radius: 5px;
}

.logoPage, .opciones, .credito, .contenidoFooter .logo {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

footer .opciones ul li {
    margin-bottom: 5px;
}

footer .opciones ul li a {
    text-decoration: none;
}

footer .redes {
    display: flex;
}

footer .redes div {
    margin: 3px;
}

footer .redes div a i {
    font-size: 30px;
    color: gray;
}

.credito ,.creditoTexto a {
    color: gray;
}

@media screen and (max-width:460px){
    footer .contenidoFooter .logoPage img {
        width: 100px;
    }
    
    .contenidoFooter .logo img {
        width: 75px;
    }
    .logoPage, .opciones, .credito, .contenidoFooter .logo {
        display: flex;
        justify-content: left;
        flex-wrap: wrap;
        align-items: center;
    }
}