*{ 
	box-sizing: border-box; 
	margin: 0; 
	padding: 0; 
	transition: all 0.4s; 
} 
body{ 
	font-family: Arial, Helvetica, sans-serif; 
	color: black;
	
} 
a{ 
	text-decoration: none; 
	color: black; 
	font-size: 1.3rem; 
	font-weight: bold; 
} 
header{
	background-color: black;
}

.navbar {
    display: flex;
    height: 5rem;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-bottom: 2px solid grey;
	position: relative; 
	z-index: 9999;
}


.logo img{ 
	width: 4rem; 
	height: 4rem; 
	margin-left:1rem; 
	
} 

.hamburger-menu {
    padding-right: 1.5rem;
    cursor: pointer;
}

.hamburger-menu .line {
    display: block;
    width: 2.5rem;
    height: 2px;
    margin-bottom: 10px;
    background-color: white;
    cursor: pointer;
}

.hamburger-menu.active {
    background-color: black;
    border-radius: 5px;
}

.nav-menu{ 
	position: fixed; 
	width: 94%; 
	top: 6rem; 
	left: 18px; 
	background-color: rgb(255, 255, 255); 
	font-weight: 600; 
	background-color: black;

} 
.nav-menu a{ 
	display: block; 
	text-align: center; 
	padding: 5px 0; 
	color: white;
} 
.nav-menu a:hover{ 
	background-color: rgb(223, 251, 219); 
	
} 

.hide{ 
	display: none; 
    font-family: Arial, Helvetica, sans-serif;
	color: white;
} 

@font-face {
    font-family:"Hanson-Bold.ttf";
    src: url("C:\Users\hebro\Downloads\Compressed\FONT\hanson-bold\Hanson-Bold.ttf") 
}

.newFont
{
   font-family: 'Hanson-Bold.ttf';
}

.welcoming-container {
	max-width: 80%;
	margin: auto;
	text-align: left;
	padding-left: 0px; 
	margin-top: 100px;
}
.welcome-text {
	padding-left: 0px;
	font-size: 24px;
	line-height: 1.5;
	margin-bottom: 15px;
	text-align: left;
	margin: auto;
}

.hobbies-greetings{
	max-width: 80%;
	margin: auto;
	text-align: center; 
	padding-left: 0px; 
	margin-top: 100px;
}

.flstudio{
	max-width: 80%;
	margin: auto;
	text-align: left;
	padding-left: 0px; 
	margin-top: 50px;
}

.footer {
	background-color: #f2f2f2;
	padding: 0px;
	text-align: center;
	position: fixed; 
	bottom: 0;
	width: 100%;
}
.footer-bar {
	height: 50px; 
	background-color: black;
}
.copyright {
	position: absolute;
	bottom: 15px; 
	left: 50%;
	transform: translateX(-50%);
	color: white;
	font-size: 60% ;
}

ul {
    display: flex;
    list-style: none;
    height: 500px;
    padding: 0;
    text-align: center;
    justify-content: center; 
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
	bottom: 20px; 
}

li {
    margin-bottom: 40px; 
    width: 100%;
    max-width: 480px; 
    box-sizing: border-box;
    padding: 60px 20px; 
}

div ul li a img {
    width: 100%;
    height: auto; 
    object-fit: cover; 
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5); 
}

.music-desc{
	margin-top: 100px;
	text-align: center;
}



/* ini animation */
.animation {
	position: relative;
	width: 100%;
  }

  

  .image {
	opacity: 1;
	display: block;
	width: 100%;
	height: auto;
	transition: .5s ease;
	backface-visibility: hidden;
  }
  
  .middle {
	transition: .5s ease;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-align: center;
  }


  .animation:hover .image {
	opacity: 0.3;
  }
  


  .animation:hover .middle {
	opacity: 1;
  }

  .animation img{
	transition: 1s ease;
	}
	
	.animation img:hover{
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
	transition: 1s ease;
	}
	
  
  .text {
	background-color: #04AA6D;
	color: white;
	font-size: 16px;
	padding: 16px 32px;
  }

/* ini batas animation */
.flscreen1{
	margin-left: 50px; 
	width: 30px;
	height: 20px;
}
.flscreen2{
	margin-left: auto;
	width: 300px; 
  	height: 200px;
}

/* for Desktop view */
@media screen and (min-width:600px){ 
	.navbar{ 
		justify-content: space-around; 
	} 
	.nav-menu{ 
		display: block; 
		position: static; 
		width: auto; 
		margin-right:20px; 
		background: none; 
	} 
	.nav-menu a{ 
		display: inline-block; 
		padding: 15px 20px; 
	} 
	.nav-menu a:hover{ 
		background-color: rgb(223, 251, 219); 
		border-radius: 5px; 
		
	} 
	.hamburger-menu{ 
		display: none; 
	} 

	
	ul {
        
        align-items: center; 
    }
    li {
        width: 100%;
    }
}


.welcome-text h3 {
	
		width: 12ch;
		animation: typing 4s steps(22), blink .5s step-end infinite alternate;
		white-space: nowrap;
		overflow: hidden;
		border-right: 3px solid;
		font-family: monospace;
		font-size: 1.5em;
		animation-iteration-count: infinite;
        
	  }
	  
	  @keyframes typing {
		from {
		  width: 0
		}
	  }
		  
	  @keyframes blink {
		50% {
		  border-color: transparent
		}
	  }
