@import url("normalize.css");
@import url("typography.css");
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap');


:root{
    --bgColor : #232463;
    --mainBg : #181945;
    --fontColor : #fff;
    font-family: "Teko";
    color: #fff;

}
body{
    background-image: url(assets/tab-bg.png);
    background-color: var(--mainBg);
    display: flex;
    flex-direction: column; 
    height: 100vh; 

  }
header{
    background-color: var(--bgColor);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}
header img{
    width: clamp(80px,300px,400px);
}
main{
    display: flex;
    height: 80%;
}
.generalContainer{
    display: flex;
    flex: 1;    
    justify-content: center;
    align-items: center;
}
@media only screen and (max-width: 600px){ 
    body{
        height: 100%;
    }
    .parentContainer{
        display: flex;  
        flex-direction: column;
    }
}

.parentContainer{
    display: flex;
    flex-direction: row ;
    height: 80%;
    width: 80%;
    background-color: #2f30777c;
    border-radius: 20px ;
    -webkit-box-shadow: -4px -4px 5px 0px rgba(100,101,163,0.4);
    -moz-box-shadow: -4px -4px 5px 0px rgba(100,101,163,0.4);
    box-shadow: -4px -4px 5px 0px rgba(100,101,163,0.4);  
}
.liveNowContainer{
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.historyMusicContainer{
    flex: 1;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    justify-content: center;
}
ul{
    width: 80%;
    overflow-y: scroll;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;
}
li{
    padding: 5px 20px 5px 25px;
    background-color:  rgb(42, 43, 106);
    border: 1px solid white;
    width: 80;
    margin-bottom: 5px;
    border-radius: 30px;

}
audio{
    width: 50%;
    margin-top: 10px;
}
.colored {
    color: red;
  }
.playNowButton{
    margin-top: 15px;
    height : 50px;
    width: auto;
    border-radius: 50%;
    border : 1px solid white;
    padding: 10px 10px 10px 20px;
    margin-bottom: 10px;
}
audio{
    margin-bottom: 20px;
}
.artist {
    color: rgb(241, 100, 100);
}
.nextSongTag{
    font-size: 50px;
}
@media only screen and (max-width: 600px){ 
    body{
        height: 100%;
        text-align: center;
    }
    .parentContainer{
        display: flex;  
        flex-direction: column;
    }
    .spacer{
        background-color: #68698d85;
        height: 4px;
        width: 80%;
    }
    h1{
        font-size: 48px;
    }
    h2{
        font-size: 32px;
    }
    h3{
        font-size: 26px;
    }
    audio{
        width: 70%;
    }
}