* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
  }
  body {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #28363D, #28363D);

  }
  .main {
    position: relative;
    height: 80%;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(to right, #5d6d7e, #566573); */
    background: linear-gradient(to right, #2F575D, #2F575D);

  }
  .main button {
    padding: 10px 12px;
    margin: 0 10px;
  }
  .main #logo {
    position: absolute;
    top: 10px;
    left: 30px;
    font-size: 45px;
    font-weight: 800;
    color: #ccc;
  }
  .main #logo i {
    margin-right: 15px;
  }
  
  /* left & right part */
  .right,
  .left {
    position: relative;
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  /* song image */
  .left img {
    height: 300px;
    width: 60%;
    border-radius: 15px;
    box-shadow: 1px 0px 20px 12px rgba(240, 240, 240, 0.2);
  }
  
  /* both range slider part */
  input[type="range"] {
    -webkit-appearance: none;
    width: 50%;
    outline: none;
    height: 2px;
    margin: 0 15px;
  }
  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    background: #ff8a65;
    border-radius: 50%;
    cursor: pointer;
  }
  .right input[type="range"] {
    width: 40%;
  }
  
  /* volume part */
  .left .volume {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
  .left .volume p {
    font-size: 15px;
  }
  .left .volume i {
    cursor: pointer;
    padding: 8px 12px;
    background: #ff8a65;
  }
  .left .volume i:hover {
    background: rgba(245, 245, 245, 0.1);
  }
  .volume #volume_show {
    padding: 8px 12px;
    margin: 0 5px 0 0;
    background: rgba(245, 245, 245, 0.1);
  }
  
  /* right part */
  .right .middle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .right .middle button {
    border: none;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    transition: 0.5s;
    background: rgba(255, 255, 255, 0.1);
  }
  .right #title {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-transform: capitalize;
    color: #fff;
    font-size: 35px;
  }
  .right #artist {
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    text-transform: capitalize;
    color: #fff;
    font-size: 18px;
  }
  .right .duration {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 20px;
    margin-top: 40px;
  }
  .right .duration p {
    color: #fff;
    font-size: 15px;
    margin-left: 20px;
  }
  .right #auto {
    font-size: 18px;
    cursor: pointer;
    margin-top: 45px;
    border: none;
    padding: 10px 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    border-radius: 10px;
  }
  .right #auto i {
    margin-left: 8px;
  }
  #play {
    background: #ff8a65;
  }
  .right button:hover {
    background: #ff8a65;
  }
  .right i:before {
    color: #fff;
    font-size: 20px;
  }
  
  .right .show_song_no {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    color: #fff;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
  }
  .right .show_song_no p:nth-child(2) {
    margin: 0 5px;
  }
  
  /* responsive */
  @media(max-width: 600px){
	.main{
		min-height: 100vh;
		width: 100%;
		flex-direction: column;
	}
	.right{
		margin-top: 50px;
		width: 60%;
	}
	.right .duration{
        width: 90%;
	}
	.left{
		margin-top: 2em;
	    width: 50%;
	}
	.left img{
        min-width: 80%;
        height: 180px;
	}
  .left .volume{
    bottom: -5%;
  }
  .right #title{
    top: -10px;
    /* transform:translateX(-150%); */
    text-align: center;
    justify-content: center;
    font-size: 20px;
    position: absolute;
  }
  .right .middle button{
    height: 40px;
    width: 40px;
  }
  .main #logo{
    left: 10px;
    font-size: 30px;
    font-weight: 600;
  }
  .right .duration {
    bottom: 30px;
  }
  .right .show_song_no{
    top: -330px;
    font-size: 10px;
    left: 90%;
    height: 10px;
  }
  #track_image{
    top: -20px;
    width: 200px;
  }
	.song_detail{
		position: absolute;
		top: 5px;
		left: 10px;
		width: 80%;
		height: 70px;
	}
	.song_detail #title{
		font-size: 1em;
	}
}