@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');


* {
    box-sizing: border-box;
    outline: none;
    /* font-family: 'Sriracha', cursive; */
    font-family: comic sans ms;
}

@import url('https://fonts.googleapis.com/css2?family=Chango&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sriracha&display=swap');

body {
  
  color: silver;
  
  
  background-image: linear-gradient(#ffcc00, red);
  
  
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* font-family: 'Lato', sans-serif; */
  margin: 0;
}

nav {
  font-family: 'Chango', cursive, thick;
}

/* Album Cover: NAV */
.navAlbCvr {
    position: fixed;
    top: 0px;
    right: 0px;
    height: 200px;
    border-bottom-left-radius: 10px;
}

.titleC {
  color: orange;
  color: black;
}

.music-container {
  /* background-color: #fff; */
  background-color: rgb(19, 19, 19);
  /* border: solid #323131 3px;
  border-bottom: solid #333333 6px; */
  border-radius: 15px;

  /* box-shadow: 0 13px 13px 0 #9bb6bc; */
  /* box-shadow: 0 20px 20px 0 rgba(252, 169, 169, 0.6); */
  display: flex;
  padding: 20px 30px;
  position: relative;
  margin: 100px 0;
  z-index: 10;
  /* color: #262b2c; */
  color: white;
}

.img-container {
  position: relative;
  width: 110px;
}


/*****  Record Center  ****************************************/
/*****  Record Center  ****************************************/
/*****  Record Center  ****************************************/
/*****  Record Center  ****************************************/
/*****  Record Center  ****************************************/
/*****  Record Center  ****************************************/
/*****  Record Center  ****************************************/
.img-container::after {
  content: '';
  /* background-color: #fff; */
  border-radius: 50%;
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, 50%);
}

.img-container img {
  border-radius: 50%;
  object-fit: cover;
  /* height: 110px; */
  height: 110px;
  width: inherit;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: rotate 3s linear infinite;

  animation-play-state: paused;
}

.music-container.play .img-container img {
  animation-play-state: running;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.action-btn {
  /* background-color: #fff; */
  background-color: rgb(19, 19, 19);
  border: 0;
  /* color: #dfdbdf; */
  color: rgb(206, 5, 5);
  font-size: 20px;
  cursor: pointer;
  padding: 10px;
  margin: 0 20px;
}

.action-btn.action-btn-big {
  /* color: #cdc2d0; */
  color: orange;
  font-size: 30px;
}

.action-btn:focus {
  outline: 0;
}

.music-info {
  background-color: rgb(0,0,0,0.8); 
  border-radius: 15px 15px 0 0;
  position: absolute;
  top: 0;
  left: 20px;
  width: calc(100% - 40px);
  padding: 10px 10px 10px 150px;
  opacity: 0;
  transform: translateY(0%);
  transition: transform 0.3s ease-in, opacity 0.3s ease-in;
  z-index: 0;
  font-family: comic sans ms;
}

.music-container.play .music-info {
  opacity: 1;
  transform: translateY(-100%);
}

.music-info h4 {
  margin: 0;
}

.progress-container {
  /*background: rgb(31, 31, 31);*/
  background: #666666;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px 0;
  height: 4px;
  width: 100%;
}

.progress {
  background-color: orange;
  border-radius: 5px;
  height: 100%;
  width: 0%;
  transition: width 0.1s linear;
}

.bkBtn {
  border-radius: 50px;
}

.logo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 200px;
    z-index: -1;
    /* border: solid 2px #2c2b2b; */
    /* border-bottom: solid 6px #092135; */
    /* padding: 10px; */
    border-radius: 30px;
}



/* ******************************************************************************************** */
@media only screen and (max-width: 800px) {

    .navAlbCvr {
        height: 100px;
    }


    .logo {
        
        height: 130px;
    }


    .progress {
        background-color: #ffcc00;
    }



}