@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Brygada+1918:ital,wght@0,500;0,700;1,500&display=swap'); 

/**NAVIGATION BAR**/
/**navigation bar**/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
::selection{
  color: #000;
  background: #fff;
}

nav{
  font-family: 'Poppins',sans-serif;
  position: fixed;
  background: #1b1b1b;
  width: 100%;
  padding: 10px 0;
  z-index: 12;
}
nav .menu{
  max-width: 1250px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  
}
.menu .logo {
  position: relative;
}
.logo-icon {
  position: absolute;
  top: 5px; /* adjust the value as needed */
  left: 5px; /* adjust the value as needed */
  width: 40px; /* adjust the value as needed */
  height: auto;
}
.menu .logo a {
  margin: 70px;
  text-decoration: none;
  color: #fff;
  font-size: 33px;
  font-weight: 600;
}
.menu ul{
  display: inline-flex;
}
.menu ul li{
  list-style: none;
  margin-left: 7px;
}
.menu ul li:first-child{
  margin-left: 0px;
}
.menu ul li a{
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.menu ul li a:hover{
  background: #fff;
  color: black;
}

.center{
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 20px;
  text-align: center;
}
.center .title{
  color: #fff;
  font-size: 55px;
  font-weight: 600;
}
.center .sub_title{
  color: #fff;
  font-size: 52px;
  font-weight: 600;
}
.center .btns{
  margin-top: 20px;
}
.center .btns button{
  height: 55px;
  width: 170px;
  border-radius: 5px;
  border: none;
  margin: 0 10px;
  border: 2px solid white;
  font-size: 20px;
  font-weight: 500;
  padding: 0 10px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}
.center .btns button:first-child{
  color: #fff;
  background: none;
}
.btns button:first-child:hover{
  background: white;
  color: black;
}
.center .btns button:last-child{
  background: white;
  color: black;
}

/**HEADER**/
#header{
	padding-top: 150px;
	background-color: black;
}

div.head-title{
	font-family: Brygada, serif;
	width: 37ch;
	text-align: center;
	overflow: hidden; /* Ensures the content is not revealed until the animation */
	border-right: .15em solid orange; /* The typwriter cursor */
	white-space: nowrap; /* Keeps the content on a single line */
	margin: 0 auto; /* Gives that scrolling effect as the typing happens */
	letter-spacing: .15em; /* Adjust as needed */
	animation: 
		typing 2s steps(38, end),
		/**blink-caret .75s step-end infinite;**/
		blinking .7s infinite;
}
/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 37ch}
}

/* The typewriter cursor effect */
@keyframes blinking {
  from, to { border-color: transparent }
  50% { border-color: orange; }
}

h1.title-text{
	color: #F5F2E8;
	font-size: 55px;
}
/*quote*/
div.icon-des{
	font-family: Georgia,Times,Times New Roman,serif; 
	text-align: justify;
	line-height: 25px;
	font-size: 18.5px;
	background-color: black;
	padding-top: 60px;
	padding-left: 290px;
	padding-right: 290px;
	padding-bottom: 100px;
	color: #F5F2E8
}
img.icon-music {
	display: block; 
	width: 16.5%;
	height: auto;
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 60px;
}

/** DROPDOWN MENU**/
.dropdown-holder {
	background-color: black;
	text-align: center;
	padding-bottom: 200px;
}
.dropbtn {
  width: 160px;
  background-color: transparent; 
  border: 2px solid #F5F2E8;
  color: #F5F2E8;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  text-align: center;
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
	background-color: #f1f1f1
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  color: black;
  background-color: #F5F2E8;
}

/**CONTENT**/

h2.genre {
	color: #F5F2E8;
	font-weight: bold;
	font-size: 50px;
	padding-top: 100px;
	padding-bottom: 25px;
	margin-right: 500px;
	margin-left: 500px;
	border-bottom: 1.5px solid #F5F2E8;
	margin-bottom: 100px;
}
.album-holder {
	text-align: center;
}

img.album-cover {
	text-align: center;
	display: inline-block;
	width: 300px;
	height: auto;
	opacity: 1;
	filter: alpha(opacity=100);
}
.album-cover:hover {
	opacity: 0.3;
	filter: alpha(opacity=30);
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

#emo {
	font-family: 'Poppins', sans-serif;
	background-color: black;
	padding-right: 80px;
	padding-left: 80px;
	
}

#indie {
	font-family: 'Poppins', sans-serif;
	background-color: black;
	padding-right: 80px;
	padding-left: 80px;
}

#rnb {
	font-family: 'Poppins', sans-serif;
	background-color: black;
	padding-right: 80px;
	padding-left: 80px;
}

.song-title {
	padding-top: 20px;
	padding-bottom: 2px;
	color: #F5F2E8;
	font-weight: bold;
	font-size: 21px;
}

.artist-name {
	padding-top: 5px;
	padding-bottom: 20px;
	color: #F5F2E8;
	font-size: 15px;
}
/**GO TO TOP BUTTONS**/
.btn-holder {
	background-color: black;
	text-align:center;
	padding-top: 90px;
	padding-bottom: 90px;
}
.button {
  width: 160px;
  background-color: transparent; 
  border: 2px solid #F5F2E8;
  color: #F5F2E8;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}
.go-top{
  background-color: transparent;
  color: F5F2E8;
  border: 2px solid #F5F2E8;
}
.go-top:hover {
  background-color: #F5F2E8;
  color: black;
}

.others {
	text-align: center;
}
.space-img{
	width: 90px;
	height: auto;
	display: inline-block;
	padding-top: 180px;
	padding-bottom: 20px;
}

/** dagdag **/
.paddingBlock {
	padding: 20px 0;
}

.eqWrap {
	display: flex;
}

.eq {
	padding: 50px;
}

.eq:nth-of-type(odd) {
	border: 1.5px solid #F5F2E8;
}

.eq:nth-of-type(even) {
	border: 1.5px solid #F5F2E8;
}

.equalHW {
	flex: 1;
}

.equalHMWrap {
	justify-content: space-between;
}

.equalHM {
	width: 30%;
}

.equalHMRWrap {
	justify-content: space-between;
	flex-wrap: wrap;
}

.equalHMR {
	width: 32%;
	margin-bottom: 2%;
}

.equalHMVWrap {
	flex-wrap: wrap;
}

.equalHMV {
	width: 32%;
	margin: 1%;	
}

.equalHMV:nth-of-type(3n) {
	margin-right: 0;	
}

.equalHMV:nth-of-type(3n+1) {
	margin-left: 0;	
}
