@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500&display=swap");

:root {
  --background: #e0e5ec;
  --gray: #797d7f;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Raleway", sans-serif;
}

img {
  max-width: 100%;
}

.container {
  background-color: var(--background);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 70vh;
  padding-top: 20px;
}

.player {
  width: 300px;
  min-height: 900px;
  height: auto;

  background-color: var(--background);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-radius: 20px;
  box-shadow: 9px 9px 16px rgba(163, 177, 198, 0.6),
    -9px -9px 16px rgba(255, 255, 255, 0.5);
  margin: 5px;
}

.player__controls {
  display: flex;
  width: 95%;
  justify-content: space-evenly;
  align-items: center;
  margin: 10px; 
  
}

.player__btn {
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: -8px -8px 20px 0px #fff9, -6px -6px 6px 0px #fff9,
    8px 8px 20px #0001, 5px 5px 6px 0px #0001;
  color: var(--gray);
}

.player__btn:active {
  box-shadow: inset -8px -8px 20px #fff9, inset -5px -5px 6px #fff9,
    inset 8px 8px 20px #0003, inset 5px 5px 6px #0001;
}

.player__btn--small {
  min-width: 50px;
  min-height: 50px;
}

.player__title {
  font-weight: 600;
  font-size: 0.8em;
  color: #a1a1a1;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.player__album {
  width: 215px;
  
}

.player__img {
  border-radius: 50%;
  box-shadow: 2px 2px 7px rgb(163, 177, 198), -2px -2px 7px rgb(163, 177, 198),
    -8px -8px 50px rgba(255, 255, 255, 0.8), 3px 3px 25px rgba(0, 0, 0, 0.6);
}

.player__artist{
font-size:1.2em;
font-weight:500;
opacity:0.7;
margin:20px 0 5px 0;
text-align:center;
padding:0 10px;
}

.player__song {
  position: relative;
  width: 100%;
  text-align: center;
  font-weight: 400;
  font-size: 1em;
  opacity: 0.5;
  margin: 0;
}

.player__level {
  width: 80%;
  -webkit-appearance: none;
  outline: none;
  border: none;
  padding: 0;
  margin-top: 40px;
}

.player__level::-webkit-slider-runnable-track {
  background-color: #d7dbdd;
  height: 6px;
  border-radius: 3px;
}

.player__level::-webkit-slider-thumb {
  -webkit-appearance: none;
  border-radius: 100%;
  background-color: #5c87fe;
  height: 18px;
  width: 18px;
  margin-top: -7px;
}

.audio-duration {
  margin-top: -30px;
  display: flex;
  width: 78%;
  font-size: 10px;
  font-weight: 600;
  color: #a1a1a1;
  letter-spacing: 1px;
}

.start {
  flex: 1;
}

.player__audio {
  visibility: hidden;
}

.player__btn--medium {
  min-height: 70px;
  min-width: 70px;
}

.blue {
  background-color: #5c87fe;
  color: #fff;
}

.hide {
  display: none;
}

.sau {
    padding: 30px;
    background: #1f1d1d
}

.box-container {
   background-color: var(--background);
  display: flex;


  align-items: center;
  justify-content: center;
  min-height: 8vh;
}

.box-container .box {
     display: flex;

  align-items: center;
 justify-content: space-around;
    text-align: center;
    height: 8rem;
    width: 30rem;
    --background: #e0e5ec;
  --gray: #797d7f;
    text-align: center;
    border-radius: 1rem;
    box-shadow: 9px 9px 16px rgba(163, 177, 198, 0.6),
    -9px -9px 16px rgba(255, 255, 255, 0.5);
    margin: 2rem;   
}

.box-container .box i {
    height: 2rem;
    width: 2rem;

    line-height: 2rem;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    background: #5c87fe;
    font-size: 1.5rem;
    margin: 0rem 0;
    box-shadow: 5px 5px 10px rgba(163, 177, 198, 0.6),
    -5px -5px 10px rgba(255, 255, 255, 0.5);

}

.box-container .box h3 {
    font-size: 10px;
    color: #5c87fe;

}

.box-container .box p {
    padding: 0 15px;
    font-size: 10px;
}



.buttons {
  min-width: 100px;
  display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.buttons a {
  text-decoration: none;
  font-size: 20px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: #314652;
  color: #f1f1f1;
  border-radius: 50%;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, .5);
  transition: all .4s ease-in-out;
}

.buttons a:hover {
  transform: scale(1.2);
}

@media (max-width: 768px) {

    .title {
        margin-bottom: 0;
        font-size: 40px;
    }

    .sau {
        height: 100vh;
    }

    .navbar {
        display: none;
    }

}  

.more {
  cursor: pointer;
  background-color: #ccf;
}

.complete {
  display: none;
}


.lyrics-toggle{
margin-top:20px;
text-align:center;
}

.lyrics-toggle button{
padding:10px 20px;
border:none;
border-radius:10px;
cursor:pointer;
background:#e0e5ec;
box-shadow: 5px 5px 10px rgba(163, 177, 198, 0.6),
-5px -5px 10px rgba(255, 255, 255, 0.5);
}

.lyrics-content{
display:none;
margin:20px auto;
width:80%;
padding:15px;
border-radius:15px;
background:#e0e5ec;
box-shadow: inset 5px 5px 10px rgba(163, 177, 198, 0.6),
inset -5px -5px 10px rgba(255, 255, 255, 0.5);
white-space:pre-line;
}

.song-description{
max-width:260px;
margin:10px auto 15px auto;
font-size:13px;
line-height:1.5;
opacity:0.8;
text-align:center;
padding:0 10px;
}

.lyrics-content{
white-space: pre-line;
font-size: 13px;
line-height: 1.4;
}