body {
  font-family: Arial, sans-serif;
  background-color: #0d1117; /* tema gelap ala gaming */
  color: #c9d1d9;
  margin: 0;
  padding: 0;
}

header {
  background: #161b22;
  padding: 1rem;
  text-align: center;
}

header h1 {
  margin: 0;
  color: #58a6ff;
}

section {
  padding: 20px;
  margin: 20px;
  background: #161b22;
  border-radius: 8px;
}

#about {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 24px;
}

#about h2 {
  color: #58a6ff;
}

.profil {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

#about img {
  border-radius: 10%;
  margin-top: 10px;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav ul li {
  display: inline;
  margin: 0 10px;
}

nav ul li a {
  color: #c9d1d9;
  text-decoration: none;
}

nav ul li a:hover {
  color: #58a6ff;
}

/* pop up  */

/* Overlay gelap yang menutupi seluruh halaman */
.modal-overlay {
  display: none; /* Awalnya disembunyikan */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Warna hitam transparan */
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Pastikan di atas elemen lain */
}

/* Kotak popup */
.modal-content {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 90%;
}

.modal-content h2 {
  margin-top: 0;
  color: #333;
}

.modal-content p {
  color: #666;
  line-height: 1.5;
}

.modal-content button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 1rem;
  font-size: 16px;
}

.modal-content button:hover {
  background-color: #0056b3;
}
