* {
    margin: 0;
}
body {
    background: #4f85ff;
}
.music_nav_bar {
    background: #045ffec2;
    width: 300px;
    border-radius: 15px;
    margin: 10px;
    box-shadow: 0px 0px 2px white;
    border: 10px solid white;
    height: 275px;
    overflow-y: scroll;
}
.music_nav_bar li {
    list-style: none;
   margin: 10px 5px 10px;
}
.music_nav_bar a {
   text-decoration: none; 
    color: white;
   font-family: roboto;
    
}
.music_wrapper {
   display: flex;
   /* flex-wrap: nowrap; */
   /* width: 100%; */
   /* align-content: center; */
   /* flex-direction: row; */
   /* justify-content: space-around; */
}
.music_selection {
   background: #00000078;
   margin-left: 10px;
   border-radius: 10px;
   color: white;
}
.music_selection {display: inline-flex;width: 100%;text-align: center;margin-top: 30px;}
.audio-player {
  height: 50px;
  width: 350px;
  background: #444;
  box-shadow: 0 0 20px 0 #000a;
  font-family: arial;
  color: white;
  font-size: 0.75em;
  overflow: hidden;
  display: grid;
  grid-template-rows: 6px auto;
}
.audio-player .timeline {
  background: white;
  width: 100%;
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 #0008;
}
.audio-player .timeline .progress {
  background: coral;
  width: 0%;
  height: 100%;
  transition: 0.25s;
}
.audio-player .controls {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 0 20px;
}
.audio-player .controls > * {
  display: flex;
  justify-content: center;
  align-items: center;
}
.audio-player .controls .toggle-play.play {
  cursor: pointer;
  position: relative;
  left: 0;
  height: 0;
  width: 0;
  border: 7px solid #0000;
  border-left: 13px solid white;
}
.audio-player .controls .toggle-play.play:hover {
  transform: scale(1.1);
}
.audio-player .controls .toggle-play.pause {
  height: 15px;
  width: 20px;
  cursor: pointer;
  position: relative;
}
.audio-player .controls .toggle-play.pause:before {
  position: absolute;
  top: 0;
  left: 0px;
  background: white;
  content: "";
  height: 15px;
  width: 3px;
}
.audio-player .controls .toggle-play.pause:after {
  position: absolute;
  top: 0;
  right: 8px;
  background: white;
  content: "";
  height: 15px;
  width: 3px;
}
.audio-player .controls .toggle-play.pause:hover {
  transform: scale(1.1);
}
.audio-player .controls .time {
  display: flex;
}
.audio-player .controls .time > * {
  padding: 2px;
}
.audio-player .controls .volume-container {
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.audio-player .controls .volume-container .volume-button {
  height: 26px;
  display: flex;
  align-items: center;
}
.audio-player .controls .volume-container .volume-button .volume {
  transform: scale(0.7);
}
.audio-player .controls .volume-container .volume-slider {
  position: absolute;
  left: -3px;
  top: 15px;
  z-index: -1;
  width: 0;
  height: 15px;
  background: white;
  box-shadow: 0 0 20px #000a;
  transition: 0.25s;
}
.audio-player .controls .volume-container .volume-slider .volume-percentage {
  background: coral;
  height: 100%;
  width: 75%;
}
.audio-player .controls .volume-container:hover .volume-slider {
  left: -123px;
  width: 120px;
}
input[type="search"] {
  border: none;
  background: #ffffff24;
  margin: 0;
  float: left;
  padding: 7px 8px;
  font-size: 14px;
  color: inherit;
  border: 1px solid transparent;
  border-radius: inherit;
}
input[type="search"]:focus {
  border: none;
  background: #ffffff;
  margin: 0;
  float: left;
  padding: 7px 8px;
  font-size: 14px;
  color: inherit;
  border: 1px solid transparent;
  border-radius: inherit;
}
input[type="search"]::placeholder {
  color: #bbb;
}
form {
  color: #555;
  display: inline-flex;
  padding: 2px;
  border: 1px solid currentColor;
  border-radius: 5px;
  margin-top: 5px;
  margin-left: -20px;
}
button[type="submit"] {
  text-indent: -999px;
  overflow: hidden;
  width: 40px;
  padding: 0;
  margin: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
  cursor: pointer;
  opacity: 0.7;
}

button[type="submit"]:hover {
  opacity: 1;
}
table {
  position: relative;
}
table > thead {
  color: white;
  position: absolute;
  top: 0;
  right: 0;
  /* transform: translateX(100%); */
  width: 15%;
  background: #121212;
  text-align: center;
  height: 40px;
  border-radius: 5px;
  margin: auto;
}
table > caption {background: #ffffff12;height: 40px;border-radius: 5px;}
th {position: relative;top: 5px;left: 20px;}
.music_selection thead li {
  list-style: none;
  
}
.music_selection thead a{
text-decoration: none;
  color: white;
  font-family: roboto;
  
}
.article-container {
  text-align: center;
  margin: auto;
}
.grid-container {
  display: inline-flex;
  grid-template-columns: auto auto auto;
  background-color: #2196F3;
  padding: 10px;
  box-shadow: 0px 0px 3px white;
  border: 2.7px solid white;
}
.grid-item {
  /* background-color: rgba(255, 255, 255, 0.8); */
  /* border: 1px solid rgba(0, 0, 0, 0.8); */
  padding: 20px;
  font-size: 30px;
  text-align: center;
  /* border-radius: 100px; */
  box-shadow: 0px 0px 3px;
  height: 120px;
  width: 100px;
}
h2 {
  font-size: 16px;
  width: 100%;
  font-family: roboto;
  min-height: 10px;
  max-height: 50px;
}
.title {
  color: white;
  font-family: arial;
  line-height: 2
}
/* width */
::-webkit-scrollbar {
  width: 25px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 3px #1e68fe;
  border-radius: 14px;
  margin-top: 4px;
   margin-bottom: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #4f85ff;
  border-radius: 10px;
}
./* The animation code */
@keyframes music_nav_bar {
  0%   {background-color:red; left:0px; top:0px;}
  25%  {background-color:yellow; left:200px; top:0px;}
  50%  {background-color:blue; left:200px; top:200px;}
  75%  {background-color:green; left:0px; top:200px;}
  100% {background-color:red; left:0px; top:0px;}
}

/* The element to apply the animation to */
.music_nav_bar {
  width: 300px;
  height: 1000px;
  position: relative;
  background-color: #4f85ff;
  animation-name: example;
  animation-duration: 4s;
}
.grid-container {
  display: grid;
  grid-template-columns: max-content max-content max-content max-content max-content max-content;
  /* grid-template-rows: 80px 200px; */
  /* gap: 10px; */
  background-color: #4f85ff;
  padding: 10px;
  /* align-content: space-around; */
  /* justify-content: center; */
  /* justify-items: stretch; */
  /* align-items: stretch; */
  /* width: 300px; */
}

.grid-container > div {
  background-color: rgb(79 133 255);
  text-align: center;
  padding: 20px 0;
  font-size: 30px;
}
img {
  padding: 5px;
}