@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100;
    src: local('Roboto Light'), local('Roboto-Thin'), url(./fonts/roboto_100.woff2) format('woff2');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: local('Roboto Light'), local('Roboto-Light'), url(./fonts/roboto_300.woff2) format('woff2');
}
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 300;
    src: local('Roboto Light'), local('Roboto-LightItalic'), url(./fonts/roboto_300i.woff2) format('woff2');
}
* {
    box-sizing: border-box;
}

@keyframes Gradient {
    /* 0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    } */
    /* #EE7752, #E73C7E, #ac32e4, #7918f2, #4801ff */
    0% {
        background-color: #EE7752;
    }
    10% {
        background-color: #E73C7E;
    }
    30% {
        background-color: #ac32e4;
    }
    50% {
        background-color: #7918f2;
    }
    70% {
        background-color: #4801ff;
    }
    85% {
        background-color: #ac32e4;
    }
    100% {
        background-color: #EE7752;
    }
}



body {
    padding: 0;
    margin: 0;
    min-height: 100vh;
    /* width: 100vw; */
    /* display: flex;
    align-items: center; */
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    animation: Gradient 30s ease infinite;
}

.main-bg {
    /* background: linear-gradient(-45deg, #EE7752, #E73C7E, #ac32e4, #7918f2, #4801ff); */
    /* background-size: 400% 400%; */
}

.wd-bg {
    background: linear-gradient(-45deg, #11b1df, #0b80e8, #003d73, #003d73);
    background-size: 400% 400%;
}

main {
    width: 100%;
    padding: 0 30px;
    margin: 0 auto;
}
.container {
    width: 60%;
    margin: 0 auto;
}

.portals {
    margin-top: 15px;
    text-align: center;
}
.portals a {
    display: inline-block;
    padding: 10px;
}
.portals img {
    width: auto;
    max-height: 36px;
}

h1 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 72px;
    animation: neon2 3s ease-in-out infinite alternate;
}
p {
    color: #fff;
    font-weight: 100;
    font-size: 14px;
    text-align: center;
}
footer {
    width: 100%;
    text-align: center;
    padding: 16px;
}
.copy {
    color: #fff;
    font-weight: 100;
    font-size: 12px;
    text-align: center;
}
.row {
    display: flex;
}



/* PLAYER */
#spectrum {
    width: 100%;
    display: block;
}
/* #spectrum #empty rect {
    fill: rgba(255,255,255,0.2);
}
#spectrum #full rect {
    fill: #fff;
}
#spectrum #fragment rect {
    fill: rgba(255,255,255,0.5);
} */

.player .cover {
    width: 120px;
    height: 120px;
    background-color: #fff;
    /* margin: 30px auto; */
    margin: 30px;
}

.controls {
    width: 300px; 
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.controls .control {
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
}

.controls .control .label {
    display: block;
    box-sizing: border-box;
    width: 0;
}

.controls .control.control-prev .label {
    height: 18px;

    border-color: transparent #fff transparent transparent;
    border-style: solid;
    border-width: 9px 15px 9px 0;
}

.controls .control.control-next .label {
    height: 18px;

    border-color: transparent transparent transparent #fff;
    border-style: solid;
    border-width: 9px 0 9px 15px;
}

.controls .control.control-play .label {
    height: 36px;

    border-color: transparent transparent transparent #fff;
    transition: 100ms all ease;
    border-style: solid;
    border-width: 18px 0 18px 30px;
}

.controls .control.control-play.playing .label {
    border-style: double;
    border-width: 0px 0 0px 30px;
}

.timeline {
    /* display: flex;
    justify-content: space-between; */
    color: white;
}
.timeline .current { font-size: 18px; margin-right: 10px; }
.timeline .total { font-size: 10px; }

.songs {
    /* width: 50%; */
    
}
.songs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.songs ul li {
    display: block;
    cursor: pointer;
    line-height: 28px;
    vertical-align: middle;
    color: #fff;
    font-weight: 100;
    font-size: 14px;
    transition: all 0.3s ease;
}
.songs ul li.active {
    font-weight: 300;
    font-size: 22px;
}
.songs ul li .time {
    display: inline-block;
    white-space: nowrap;
}

.songs ul li .title {
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    white-space: nowrap;
}

.songs ul li .year {
    float: right;
}

.cover {
    width: 100%;
    padding: 32px;
    text-align: center;
    display: block;
}

.cover img { 
    max-width: 300px; 
    height: auto;
    border: 10px solid #fff;
}

.cover h1 { 
    font-size: 28px;
    text-transform: none;
    margin-top: 32px;
}


@media screen and (max-width: 800px) {
    h1 { font-size: 32px; }
    .container { width: 100%; }
    .controls { margin-top: 45px; }
}
