*,
*:before,
*::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-size: 15px;
  font-family: "Roboto Condensed", sans-serif;
	background: url(../images/Noir-wallpapers-4k4.jpg) 50% 50% / cover;
}

html {
  line-height: 1.6em;
}

.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
	background-color: white;
	box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
	border-left: 0.5px solid #ddd;
	border-right: 0.5px solid #ddd;
}

/*HEADER*/

#header_myMusic{
	margin-bottom: 50px;
}

.global-header {
  /*text-align: center;*/
  width: 100%;
  height: auto;
  margin-bottom: 25px;
	background: url(../images/MyMusicPic.jpg) 50% 50% /cover;
	z-index: -2;
}



.flex-wrap_header {
  display: flex;
  justify-content: space-between;
  align-content: center;
	align-items: center;
	padding: 25px;
}

.flex-wrap_header a {
	text-decoration: none;
  margin-right: 7px;
  color: #f1f1f1;
  padding: 5px;
	/*font-size: larger;*/
	background-color: #1c1c1c;
	border-radius: 10px;

}

.flex-wrap_header h1{
	font-size: 40px;
}



.flex-wrap_header i{
	position: relative;
}

.flex-wrap_header a:focus,
.flex-wrap_header a:hover {
	color: #fab907;
  transition: all 0.1s linear;
  transform: scale(1.1);

}

.flex-wrap_header li {
  list-style-type: none;
  cursor: pointer;
  display: inline;
  font-weight: bold;
}

.logo {
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
  font-size: 30px;
  font-weight: bold;
}

.logo h1 {
  color: #1c1c1c;
  font-weight: bold;
}

.logo em {
  color: #fab907;
}

/*MAIN*/

.flex-wrap {
  display: flex;
  align-content: center;
  padding: 40px;
  overflow-x: auto;
  background: -webkit-linear-gradient(left, #b8c6df 0%,#6d88b7 100%);
  border-radius: 5px;
  border:1px solid #fab907;
  padding-left: 15px;
  padding-right: 15px;
  z-index: -2;
 
}

.flex-wrap::-webkit-scrollbar-thumb{
  /*width: 0;*/
  background-color: #1c1c1c;
  cursor: pointer;
}


#pad_sec{
  padding-top: 30px;
  padding-bottom: 30px;
}

/*Cards*/

.box_album {
  border-radius: 15px;
  box-shadow: 0px 10px 30px #1c1c1c31;
  margin-right: 30px;
  background-color: white;
  margin-top: 20px;
	margin-bottom: 20px;
  padding: 10px;

  
}

.box_album:focus,
.box_album:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
  transition: all .2s linear;
}

.box_album h4{
  border-bottom: 0.5px solid #1c1c1c;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20pxpx;
  padding: 5px;
}

.box_album img {
  width: 300px;
  height: auto;
  padding: 5px;
  border-radius: 15px;
	box-shadow: 0px 10px 30px #1c1c1c31;
}

.box_album i {
  position: absolute;
}

.box_album_link{
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.box_album a {
  text-decoration: none;
  font-size: 15px;
  border-radius: 20px;
  background-color: #fab907;
  color: #1c1c1c;
  padding: 8px;
  padding-right: 22px;
  position: relative;
}

.box_album a:focus,
.box_album a:hover {
  color:#fab907 ;
  background-color:  #1c1c1c ;
  border: 1px solid #1c1c1c;
  transition: all .1s linear;
}



#footer_myMusic{
  margin-top: 50px;
}


.album_footer {
  text-align: center;
}





/*Tablet*/
@media only screen and (min-width: 768px) and (max-width: 959px) { 
	.wrapper{
		max-width: 100%;
	}



}


/*media query mobile*/
@media only screen and (max-width: 767px) {
.flex-wrap_header li{
	display: block;
	font-size: 20px;
}

#header_myMusic{
  margin-bottom: 5px;
}

#footer_myMusic{
  margin-top: 5px;
}

.flex-wrap{
  padding: 10px;
}

}