/* CSS Document */
body{background-color: #444444;align-items: center; font-family: Cambria;}

h1{color: #E0F0FF; font-family: Cambria; font-size: 64; margin:2 0 2 0; text-align: center; padding-top: 4px;}
h2{color: #E0F0FF; font-family: Cambria; font-size: 32; margin:2 0 2 0; text-align: center;}
h3{color: #E0F0FF; font-family: Cambria; font-size: 24; margin:2 0 2 0; text-align: center;}
a {color: #88eeff; font-family: Cambria; letter-spacing: 2px; }
a:hover{color: #FFFFFF; text-decoration: none; letter-spacing: 2px; }

/*Неподвижный основной плеер*/
.player{
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 600 px;
  background: #00a0e0; 
  border-bottom: 1px solid #eee;
  border-radius: 40px;
  padding: 10px;
  }

/*Основная рамка*/  
.list{
  margin-top: 120px;
	width: 480px;
  background: #606060; 
  border-bottom: 1px solid #eee;
  border-radius: 40px;
  padding-top: 16px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

/* ячейка меню*/
.menu-item{
  vertical-align: text-top;
  padding-top: 4px;
  margin: 12px; 
  font-family: Cambria;
  font-size: 12pt; 
  background: #00a0e0;
  color: #e0e0ff;
  text-align: center;
  width: 25%;
  border-radius: 10px;
  border-bottom: 1px solid #eee;
}

.menu-img{
  vertical-align: middle; 
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* аватар трека */ 
.author{
  vertical-align: middle; 
  border-radius: 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  margin: 4px 12px 4px 4px; 
}
/*надпись текущего трека*/
#current{
  color: #e0e0ff;
  text-align: center;
}

/* стили списка*/
/*ul список треков*/
.track-list {
    list-style: none;
    padding: 0;
  }

/*li элемент списка*/
.track-item {
    background: #0070C0; 
    color: #E0F0FF;
    padding: 4px 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    text-align: left;
    font-size: 20pt;
    margin: 8px 12px; 
    border-radius: 20px;
  }

.track-item:hover {
    background-color: #f9f9f9;
    color: #0070C0;
  }

.track-item.active {
    background: #00A0E0; 
    color: #E0F0FF;
    font-weight: bold;
    text-align: left;
  }

.note{
    font-size: 12pt;
    color: #a0b0bb;
}  