body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(#ccd0cf, #253745e6, #06141b);
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.container {
	text-align: center;
	border-radius: 15px;
	padding: 40px 30px; /* Sesuaikan padding */
	background-color: rgba(255, 255, 255, 0.669);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
	max-width: 800px;
	position: relative;
}

h1 {
	color: #4a4a4a;
	font-size: 1.5rem;
	margin-top: 10px;
	margin-bottom: 20px;
}

.profile {
	margin-bottom: 40px;
	position: relative;
}

.profile img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	border: 5px solid #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.profile h2 {
	color: #4a4a4a;
	font-size: 2rem;
	margin-top: 10px;
	margin-bottom: 10px;
}

.profile .bio {
	font-size: 0.8rem;
	color: #4a4a4a;
	margin-top: 10px;
}

.bio {
	font-size: 16px;
	line-height: 1.5;
}

.highlight-javascript {
	color: black;
	background-color: #f5dd19;
	font-weight: bold;
}

.highlight-console {
	color: #b37cc8;
	background-color: #3a3a3a1a;
}

.highlight-log {
	color: #74a9d9;
	background-color: #3a3a3a1a;
}

.highlight-brackets {
	color: #f1d42c;
	background-color: #3a3a3a1a;
}

.highlight-hello {
	color: #c7707a;
	background-color: #3a3a3a1a;
}

.watermark {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.6rem;
	color: rgba(0, 0, 0, 0.5);
	width: calc(100% - 100px);
	line-height: 1.5;
}

.social-icons {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.social-icons a {
	display: inline-block;
	transition: transform 0.3s ease;
}

.social-icons img {
	width: 30px;
	height: 30px;
	margin: 0 10px; /* jarak antara ikon sosial */
	cursor: pointer;
	transition: opacity 0.3s;
	transition: transform 0.3s ease-in-out;
}

.social-icons img:hover {
	transform: scale(1.1);
}

.link {
	display: block;
	margin-bottom: 20px;
	padding: 15px 90px;
	background-color: #4a5c6a;
	color: #ffffffc4;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3s ease;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
	font-size: 1.2rem;
}

.link:hover {
	background-color: #11212d;
}

.link:active {
	background-color: #253745;
	transform: translateY(2px);
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes playMusic {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

.separator {
	border-top: 2px dashed #2e2e2e;
	margin: 20px 0;
}

.music-playing {
	animation: playMusic 0.5s ease;
}

body {
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.navigator {
	display: flex;
	justify-content: space-around;
	margin-bottom: 30px;
}

.navigator a {
	text-decoration: none;
	color: #333;
	font-weight: bold;
	font-size: 15px;
	cursor: pointer;
	transition: color 0.3s ease;
}

.navigator a:hover {
	color: #666;
}
