@font-face {
	font-family: electricLady;
	src: url(fuentes/EletricLadyRegular.otf);
}
@font-face {
	font-family: aldine401;
	src: url(fuentes/Aldine401BT.ttf);
}

@font-face {
	font-family: audioplayer;
	src: url(fuentes/audioplayer.ttf);
}

html {
    touch-action: manipulation;
    overflow-x: hidden;
}

body {
    width: 100%;
    height: 100vh;
    background-color: #3a3a40;
    font-family: 'aldine401';
    color: #fff;
    font-size: 16px;
    box-sizing: border-box;
    overflow-x: hidden;
    margin: 0;
    flex-direction: column;
    padding: 2rem;
}

.head {
    height: auto;
	align: center;
}
.head h1 {
    text-transform: uppercase;
	font-size: 10vh;
	text-align: center;
	margin-bottom: 0px;
}
.head h2 {
	font-family: electricLady;
	font-size: 5vh;
	text-align: center;
margin-left:10vh;
	margin-top: -1vh;
}

.description-action {
    font-size: 1.4rem;
    opacity: .7;
    margin-bottom: 2rem;
}

/* TRACKS BUTTONS */
.mode-container,
.tracks-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
    
    .tracks-container ul {
        width: 100%;
        display: flex;
        flex-flow: wrap;
        justify-content: space-between;
        padding: 0;
    }

        .tracks-container li {
            list-style: none;
            width: 100% /* 20rem */ ;
            height: 5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #fff;
            border-radius: 10rem;
            color: #000;
            font-size: 1.5rem;
            font-weight: bold;
            opacity: .7;
            position: relative;
            margin-bottom: 2rem;

            transition: .25s all ease-in-out;
            -webkit-transition: .25s all ease-in-out;
            -o-transition: .25s all ease-in-out;
            -moz-transition: .25s all ease-in-out;
        }

        .tracks-container li:active {
            opacity: .5;
        }

        .tracks-container li.active {
            opacity: 1;
            color: transparent;
        }

        .tracks-container li.active::after {
            content: '\e801';
            position: absolute;
            font-size: 2rem;
            color: #000;
            font-family: 'audioplayer';
        }

/* END TRACKS BUTTONS */