#audio-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  #album-cover {
    width: 150px;
    height: 150px;
    background-size: cover;
    background-position: center;
    border-radius:1px ;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  #album-info {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
  }
  
  #controls {
    display: flex;
    align-items: center;
  }
  
  #play-pause-btn {
    width: 50px;
    height: 50px;
    background-image: url('play.png');
    background-size: cover;
    background-position: center;
    margin-right: 20px;
    cursor: pointer;
    border-radius: 50%;
  }
  
  #play-pause-btn.playing {
    background-image: url('pause.png');
  }
  
  #volume-slider {
    width: 100px;
    height: 10px;
    margin-left: 20px;
    cursor: pointer;
  }

  body{
    background: #ECECEC;
   font-family: 'Montserrat', sans-serif;
 }
 .arrow-down {
   width: 0;
   height: 0;
   border-left: 15px solid transparent;
   border-right: 15px solid transparent;
   margin: auto;
   border-top: 15px solid #ffe653;
 }

 .mejs-container{
   width: 100px !important;
   display: none !important; 
 }
 .onair_artista{
   text-transform: uppercase;
   font-size: 16px;
   text-align: center;
 }
 .onair_titolo{
   font-size: 20px;
   text-align: center;
 }
 .titolo{
   margin-top: 30px;
 }

 .row{
  background: #ffe653;
 }
 .col{
  text-align: center;
   padding: 10px;
 }
 