@font-face {
    font-family: texto;
    src: url("fuentes/IndieFlower-Regular.ttf");
}

:root {
    --color1: #ab7d7d;
    --color2: rgb(255, 228, 228);
    --color3: rgb(167, 62, 62);
    --color4: #0fc;
    --colorFondo: #000;
    --colorText: #fff;
}

* {
    margin: 0px;
    padding: 0px;
    /*border: 1px solid #fff;*/
}

/*----------------------------------------------------------*/

body {
    margin: 0;
    padding: 0;
    display: grid;
    place-items: center;
    overflow-x: hidden;
    font-family: texto, sans-serif;
    background-color: var(--colorFondo);
    font-weight: 100;
    color: var(--colorTexto);
    font-size: 18px;
    cursor: default;

}

div, header, section, footer {
    
}

/*----------------------------------------------------------*/
header {
    user-select: none;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    top: 50px;
    width: 80vw;
    min-width: 800px;
    max-width: 900px;
    height: 200px;
    font-size: 90px;
    font-weight: 1000;
    letter-spacing: 10px;
    line-height: 1.3em;
    color: var(--color3);
    padding-left: 100px;
    background-image: url('img/logo.png');
    background-repeat: no-repeat;
    background-size: 20%;
    background-position: 0% 10%;
    background-blend-mode: multiply;
    /*border: 1px solid #fff;*/
}


#lista {
    user-select: none;
    position: absolute;
    top: 400px;
    padding: 30px;
    min-width: 560px;
    height: calc(100vh - 800px);
    font-size: 32px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 30px 0 0 30px;
    overflow: auto;
}

#lista::-webkit-scrollbar {
    width: 8px;
}

#lista::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

#lista::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.elemento {
    color: var(--colorText);
    transition: color .5s;
    cursor: pointer;
}

.elemento>img {
    width: 20px;
    margin-right: 30px;
}

.elemento:hover {
    color: var(--color3);
}

/*-------------------------------*/
#lellenda {
    user-select: none;
    position: absolute;
    min-width: 650px;
    top: 280px;
    padding: 30px;
    height: 60px;
    font-size: 38px;
    color: var(--colorText);
    overflow: hidden;
}

#lellenda>span:nth-child(1) {
    color: #339933;
}

#lellenda>span:nth-child(2) {
    color: #663399;
}

#lellenda>span:nth-child(3) {
    color: #993333;
}

/*-------------------------------*/
#reproductor {
    position: fixed;
    width: 40vw;
    min-width: 380px;
    max-width: 450px;
    bottom: 150px;
    /*filter: sepia();*/
    zoom: 1.5;
}

#reproductor>audio {
    width: 100%;
}

/*-------------------------------*/
footer {
    position: fixed;
    bottom: 0px;
    text-align: center;
    width: 80vw;
    min-width: 500px;
    max-width: 900px;
    height: 200px;
    display: flex;
    color: var(--color2);
    justify-content: space-around;
    font-size: 38px;
    background-color: rgb(0, 0, 0);
    box-shadow: -10px -10px 10px black;
}

footer>div {
    display: inline-block;
    position: relative;
    margin: 20px 1%;
    transition: color .5s;
    color: var(--color2);
}

footer>div:hover {
    color: var(--color3);
}

footer>div>a>img {
    width: 70px;
    margin-right: 20px;
    filter: invert(100%);
}

footer a {
    color: var(--color2);
    text-decoration: none;
}

footer a:hover {
    color: inherit;
}

footer a:visited, footer a:active {
    color: inherit;
}