@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url(https://fonts.googleapis.com/css?family=VT323);

* {
  font-family: "Poppins", sans-serif;
  color: white;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  width: 100%;
}

* {
	box-sizing: border-box;
}

html {
	font-family: 'VT323', monospace ;
	font-size: 24px;
}

body {
	background: slategray;
	margin: 0;
	overflow-y: scroll;
	padding: 2ch;
	text-align: center;
}

.flex-container {
            display: flex;
            align-items: center;
            gap: 20px;
        }

.btn {
	background: #7C7C7C;
	border-bottom: 6px inset rgba(0,0,0,.5);
	border-left: 6px inset rgba(0,0,0,.5);
	border-right: 6px inset rgba(255,255,255,.5);
	border-top: 6px inset rgba(255,255,255,.5);
	box-sizing: border-box;
	color: white;
	cursor: pointer;
	display: inline-block;
	font-size: 2.2rem;
	margin: 1rem;
	min-width: 200px;
	padding: .5rem;
	text-transform: uppercase;
	width: auto;
  text-align: left;
	
	&:focus,
	&:hover {
		background: #BCBCBC;
	}
}

.btn.youtube {
	background: #FF0000;
	
	&:focus,
	&:hover {
		background: #A81000;
	}
}

.btn.instagram {
	background: linear-gradient(to bottom right, #405de6 0%, #e1306c 100%);
	&:focus,
	&:hover {
		background: linear-gradient(to top right, #fd1d1d 0%, #5851db 100%);
	}
}

.btn.spotify {
	background: #1ED760;
	
	&:focus,
	&:hover {
		background: #118339;
	}
}

.area {
  background: #4e54c8;
  background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);
  width: 50%;
  height: 100vh;
}

.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: animate 25s linear infinite;
  bottom: -150px;
}

.circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

.player {
  height: 630px;
  width: 320px;
  border-radius: 40px;
  background: transparent;
  border: solid 2px gainsboro;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-75%, -75%);
}

.top {
  padding: 20px;
  text-align: center;
}

.indicator {
  font-size: 25px;
}
.small,
.big,
.big_play_pause {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  background: radial-gradient(at bottom right, #292e35 0%, #292e34 80%);
  border: none;
  box-shadow: -7px -6px 10px 5px rgba(255, 255, 255, 0.04),
    6px 6px 10px 5px rgb(39, 42, 47);
  padding: 0;
}

.big,
.big_play_pause {
  height: 60px;
  width: 60px;
  box-shadow: -7px -6px 10px 5px rgba(255, 255, 255, 0.04),
    7px 6px 10px 2px rgb(14, 15, 16);
  background: radial-gradient(at bottom right, #17191e 0%, #1d2025 80%);
  cursor: pointer;
}

.big_play_pause {
  background: radial-gradient(at top left, #c92711 0%, #ea570a 80%);
}
.inner_button,
.center,
.inner_button_big,
.playpause {
  border-radius: 50%;
  height: 35px;
  width: 35px;
  background: radial-gradient(
    at top left,
    rgba(46, 50, 58, 1) 0%,
    rgba(28, 30, 35, 1) 80%
  );
  margin: 0 auto;
  border: none;
  display: flex;
  justify-content: center;
  vertical-align: middle;
  align-items: center;
}

.inner_button_big {
  height: 55px;
  width: 55px;
  background: radial-gradient(
    at top left,
    rgb(57, 59, 64) 0%,
    rgb(18, 18, 18) 112%
  );
}

.playpause {
  background: radial-gradient(at bottom right, #c92711 0%, #ea570a 80%);
  height: 55px;
  width: 55px;
}

.small:active {
  transform: translateY(2px);
  background: radial-gradient(at top left, #292e35 0%, #292e34 80%);
}
.inner_button:active {
  background: radial-gradient(
    at bottom right,
    rgba(46, 50, 58, 1) 0%,
    rgba(28, 30, 35, 1) 80%
  );
}
.big_play_pause:active {
  transform: translateY(4px);
  background: radial-gradient(at bottom right, #c92711 0%, #ea570a 80%);
}
.playpause:active {
  background: radial-gradient(at top left, #c92711 0%, #ea570a 80%);
}

.big:active {
  transform: translateY(4px);
  background: radial-gradient(at top left, #17191e 0%, #1d2025 80%);
}
.inner_button_big:active {
  background: radial-gradient(
    at bottom right,
    rgb(57, 59, 64) 0%,
    rgb(12, 13, 16) 112%
  );
}

.center {
  height: 210px;
  width: 210px;
  top: 0;
  right: 0;
  box-shadow: #17191e;
  background: gainsboro;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.album {
  border-radius: 50%;
  height: 205px;
  width: 205px;
  object-fit: cover;
}

.song_details {
  text-align: center;
  margin-top: 40px;
}

.controls {
  display: flex;
  justify-content: space-around;
  margin: 20px 20px 0px 20px;
}

.slider {
  margin: 20px auto;
  width: 80%;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #ddd;
  outline: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 5px auto;
  border: 1px solid whitesmoke;
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 80%;
  height: 6px;
  background: white;
  border-radius: 5px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: radial-gradient(at top left, #c92711 0%, #ea570a 80%);
  border-radius: 50%;
  cursor: pointer;
  margin-top: -6px;
}

.time {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  margin-bottom: 5px;
}
.description {
  line-height: 1.5;
  margin: 20px;
}

@media (max-width: 768px) {
  .player {
    height: 650px;
    width: 280px;
    padding: 10px;
  }

  .center {
    height: 200px;
    width: 200px;
  }

  .controls {
    margin: 25px 25px 0px 25px;
  }

  .slider {
    width: 90%;
  }

  .inner_slider_bar {
    width: 84%;
  }
}

@media (max-width: 480px) {
  .indicator {
    font-size: 55px;
  }
  .player {
    height: 550px;
    width: 260px;
    padding: 10px;
    margin-left: -2px;
  }

  .center {
    height: 180px;
    width: 180px;
  }

  .album {
    height: 170px;
    width: 170px;
  }

  .song_details {
    font-size: 14px;
    margin-top: 15px;
  }

  .controls {
    margin: 20px 20px 0px 20px;
  }

  .slider {
    width: 80%;
  }

  .inner_slider_bar {
    width: 30px;
  }

  .big,
  .big_play_pause {
    height: 50px;
    width: 50px;
  }

  .inner_button_big {
    height: 45px;
    width: 45px;
  }

  .playpause {
    height: 45px;
    width: 45px;
  }

  .time {
    font-size: 10px;
  }

  .indicator {
    font-size: 14px;
  }
}