@charset "UTF-8"; 

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");

@font-face {
      font-family: Archivo;
      src: url("archivo_black.ttf");
}

*{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
}

body{
      background-color: #000;
	  color: #000;
      font-family: "Poppins", sans-serif;
	  background-image: url("home_background_2400px_x_1600px.jpg");
	  background-position: center center;
	  background-repeat: no-repeat;
	  background-attachment: fixed;
      background-size: cover;
	  max-width: 100vw;
	  height: auto;
}

a{
      text-decoration: none;
}

ul{
      list-style: none;
}

#warning-message { display: none; }

@media only screen and (orientation:portrait) {
#wrapper { display:none; }
#warning-message { display:block; color: white;}

body{
      background:url("home_background_mobile_1368px_x_768px.jpg") no-repeat center center fixed;
      background-size: cover;
      height: 100%;
}       
}

/* Header */
.header{
     background-color: #000;
     position: fixed;
     top: 0;
     width: 100%;
	 height: 85px;
	 z-index: 9999;
}

.logo{
     display: inline-block;
     margin-left: 20px;
	 margin-top: 28px;
	
}

/* Nav menu */
.nav{
     width: 100%;
     height: 100%;
     position: fixed;
     background-color: #000;
     overflow: hidden;
}

.menu a{
     display: block;
     padding: 30px;
     color: #fff
}

.menu a:hover{
     background-color: #626262;
}

.nav{
     max-height: 0;
     transition: max-height .5s ease-out;
}

.hamb{
     cursor: pointer;
     float: right;
     padding: 40px 20px;
}

.hamb-line {   
	 background: #fff;
     display: block;
     height: 2px;
     position: relative;
     width: 24px;
} 

.hamb-line::before,
.hamb-line::after{
     background: #fff;
     content: ''; 
	 display: block;
     height: 100%;
     position: absolute;
     transition: all .2s ease-out;
     width: 100%;
}

.hamb-line::before{
     top: 5px;
}

.hamb-line::after{
     top: -5px;
}

.side-menu {
     display: none;
} 

.side-menu:checked ~ nav{
     max-height: 100%;
}

.side-menu:checked ~ .hamb .hamb-line {
     background: transparent;
}

.side-menu:checked ~ .hamb .hamb-line::before {
     transform: rotate(-45deg);
     top:0;
}

.side-menu:checked ~ .hamb .hamb-line::after {
     transform: rotate(45deg);
     top:0;
}

/* RESPONSIVE DROPDOWN NAVIGATION MENU */
@media (min-width: 768px) {
.nav{
     max-height: none;
	 top: 0;
     position: relative;
     float: right;
     width: fit-content;
}
	
.menu li{
	float: left;
}
	
.menu a:hover{
    background-color: transparent;
    color: #626262;
}

.hamb{
    display: none;
}
}

/* INDEX */
@media only screen and (max-width: 599px) {
#content_index{
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	z-index: 1;
}

#box_music_on_off {
	font-family: Archivo;
	font-size: 70px;
	color: #fff;
	text-align: center;
}

#box_music_message{
	margin-top: 70px;
	text-align: center;
	font-size: 30px;
	line-height: 45px;
	color: #fff;
}
	
.responsive_image_music_off {
	margin-top: 40px;
	width: 80%;
	height:auto;
}
}

@media only screen and (min-width: 600px) {
#content_index{
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;

}

#box_music_on_off {
	font-family: Archivo;
	font-size: 100px;
	color: #fff;
	text-align: center;
}

#box_music_message{
	margin-top: 40px;
    text-align: center;
	font-size: 50px;
	line-height: 65px;
	color: #fff;
}

.responsive_image_music_off {
	margin-top: 20px;
	max-width: 90%;
	height:auto;
}
}


@media only screen and (min-width: 1000px) {
#content_index{
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	z-index: 1;
}

#box_music_on_off {
	font-family: Archivo;
	font-size: 120px;
	color: #fff;
	text-align: center;
	text-shadow: 3px 3px 7px rgba(0, 0, 0, 0.1);
}

#box_music_message{
	text-align: center;
	font-size: 60px;
	line-height: 75px;
	color: #fff;
	text-shadow: 3px 3px 7px rgba(0, 0, 0, 0.1);

}
	
.responsive_image_music_off {
	margin-top: 20px;
	max-width: 100%;
	height:auto;
}
}

/* AUDIO PLAYER*/
.player {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    margin-top: 50px;
}

.player-controls {
    background-color: #fff;
    border-radius: 15px;
    width: 425px;
    display: flex;
    justify-content: flex-end;
    padding: 10px;
}


* {
    box-sizing: border-box;  
}

.song-panel {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 15px 15px 0 0;
    display: flex;
    height: 80px;
    justify-content: flex-end;
    padding: 0 12px 12px 12px;
    transform: translate3d(0, 100%, 0);
    transition: all 1s ease;
    width: 395px;
    z-index: 0;
}

.song-panel .song-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 230px;
}

.song-panel .song-info .song-info__title {
    color: #000;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.song-panel .song-info .song-info__artist {
    color: #000;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.song-panel .song-info .progress {
    background: #fff;
    border-radius: 3px;
    cursor: ew-resize;
    display: flex;
    flex: 10;
	flex-basis: 100%;
    max-height: 5px;
    position: relative;
    transition: height 0.3s;
    width: 100%;
}

.song-panel .song-info .progress .progress__filled {
	background: #000;
    flex: 0;
    flex-basis: 0%;
    width: 50%;
}
   
.song-panel.playing {
    transform: translate3d(0, 0, 0);
    transition: all 1s ease;
}

button {
   height: 80px;
   width: 80px;
   cursor: pointer;
   border: none;
   background-color: transparent;
   color: #000;
   margin: 0 5px;
   border-radius: 15px;
   position: relative;
}

button:hover, button.playing {
   background-color: #000;
   color: #fff;
}

button.play span.pause {
   background-color: white;
   position: absolute;
   top: 23px;
   height: 34px;
   width: 10px;
   display: block;
   border-radius: 3px;
   opacity: 0;
   transition: all .5s ease;
}

button.play span.pause.left {
    left: 0;
}

button.play.playing span.pause.left {
    left: 25px;
    opacity: 1;
    transition: left .5s ease, opacity .8s ease;
}

button.play span.pause.right {
    right: 0;
}

button.play.playing span.pause.right {
    right: 25px;
    opacity: 1;
    transition: right .5s ease, opacity .8s ease;
}

button.play i {
    opacity: 1;
    transition: opacity .5s ease;
}

button.play.playing i {
    opacity: 0;
    transition: all .5s ease;
}

.player-controls {
    position: relative;
}
 
.player-controls .spinner {
    height: 130px;
    width: 130px;
    position: absolute;
    top: -40px;
    left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-controls .spinner.spin {
    animation: spin 5s linear infinite;
}

.player-controls .spinner .spinner__disc {
    height: 110px;
    width: 110px;
	border-radius: 50%;
    transition: all 1s ease;
    background-size: cover;
	background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

 .player-controls .spinner .spinner__disc.scale {
    transform: scale(1.17);
    transition: all 1s ease;
}

.player-controls .spinner .spinner__disc.scale .center__disc {
    color: #e4d6e9;
    transition: all 1s ease;
}
     
.player-controls .spinner .spinner_disc .center__disc {
    background-color: white;
	height: 25px;
    width: 25px;
    border-radius: 50%;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }

}

/* RECORDS TABLE*/

table {
	width: 100%;
	padding: 25px;
	border-collapse: inherit;
	overflow: hidden;
	margin-bottom: 50px;
	margin-top: 100px;
	z-index: 1;
}

th {
	background-color: #000;
	font-family: Archivo;
	color: #fff;
	text-align: left;
	font-size: 16px;
	padding: 18px;
	
}

td {
    padding: 10px;

}

tr:nth-child(even) {
    background-color: rgba(98, 98, 98, 0.2);
    color: #fff;
}

tr:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.5); 
    color: #fff;
}

/* RESPONSIVE TABLE*/
@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1000px)  {

table, thead, tbody, th, td, tr {
	 display: block;
}

thead tr {
	 position: absolute;
	 top: -9999px;
	 left: -9999px;
}

tr {
     margin: 0 0 1rem 0;
    }
      
    
td {
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	position: relative;
	padding-left: 50%;
}

td:before {
	position: absolute;
	top: 0;
    left: 6px;
	width: 45%;
	padding-right: 10px;
	white-space: nowrap;
}

td:nth-of-type(1):before { content: "Artist"; font-family: Archivo; margin-top: 10px; margin-left: 5px; }
td:nth-of-type(2):before { content: "Title"; font-family: Archivo; margin-top: 10px; margin-left: 5px; }
td:nth-of-type(3):before { content: "Year"; font-family: Archivo; margin-top: 10px; margin-left: 5px; }
td:nth-of-type(4):before { content: "Record Label"; font-family: Archivo; margin-top: 10px; margin-left: 5px; }
td:nth-of-type(5):before { content: "Music Style"; font-family: Archivo; margin-top: 10px; margin-left: 5px; }
td:nth-of-type(6):before { content: "Media"; font-family: Archivo; margin-top: 10px; margin-left: 5px; }
		
}

/* SOCIAL */
.box_photo img{
    width:100%;
    height:auto;
    vertical-align: middle;
}

@media only screen and (max-width: 599px) {
#content_social {
	padding-top: 150px;
	padding-bottom: 55px;
    z-index: 1;
}
	
#box_title_social {
	font-family: Archivo;
	text-align: center;
	font-size: 30px;
	color: #fff;
}
	
.box_photo {
   min-height: 100px;
   width: 70%;
   margin-bottom: 40px;
   margin-left: auto;
   margin-right:auto;
   padding-bottom: 10px;
   text-align: center;
   color: #fff;
   font-size: 20px;
   line-height: 60px;
}
  
  
#box_social{
   margin-left: auto;
   margin-right: auto;
   margin-top: 40px;
   padding-bottom: 40px;
   color: #000;;
}
}


@media only screen and (min-width: 600px) {
#content_social {
	padding-top: 150px;
	padding-bottom: 45px;
    z-index: 1;
}
	
#box_title_social {
	font-family: Archivo;
	text-align: center;
	font-size: 50px;
	color: #fff;
}	
	
.box_photo{
   min-height: 100px;
   width: 45%;
   margin-bottom: 40px;
   margin-left: auto;
   margin-right: auto;
   padding-bottom: 10px; 
   text-align: center;
   color: #fff;
   font-size: 20px;
   line-height: 60px;
}
  
 #box_social{
   display: -webkit-flex;
   display: flex;
   -webkit-flex-flow: row wrap;
   flex-flow: row wrap;
   margin-right: auto;
   margin-left: auto;
   margin-top: 40px;
   padding-bottom: 40px;
   color: #000;
}
}


@media only screen and (min-width: 1000px) {
#content_social {
    padding-top: 150px;
    z-index: 1;
}
	
#box_title_social {
   font-family: Archivo;
   text-align: center;
   font-size: 70px;
   color: #fff;
}
	
.box_photo{
   width: 30%;
   margin-bottom: 40px;
   margin-left:auto;
   margin-right:auto;
   text-align: center;
   color: #fff;
   font-size: 25px;
   line-height: 60px;
}

#box_social{
   width: 1200px;
}
}


/* FOOTER */


@media only screen and (max-width: 599px) {
.footer {
   font-size: 12px;
   line-height: 20px;
   height: 45px;
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: #000;
   color: white;
   z-index: 5;
		 display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

#management {
  text-align: center;

}

#copyright {
  text-align: center;

}
}
@media only screen and (min-width: 600px) {

.footer {
   font-size: 12px;
   line-height: 35px;
   height: 35px;
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: #000;
   color: white;
   z-index: 5;

}

#management {
  text-align: right;
  float: right; /* this is where we add it */
  margin-right: 30px;
}

#copyright {
  text-align: left;
  margin-left: 30px;
}
}