body {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    line-height: 1.6;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    background-color:#e1eff5;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    background:#abdad9;
    color: #88b398;
    padding: 10px;
    width: 100%;
    top: 0;
    position: fixed;
}


h1{
    color: rgb(0, 0, 0);
}

p{
    color: rgb(82, 78, 78);
}

h2{
    color: #000000;
}

.profile {
    display: flex; /* Menggunakan Flexbox */
    align-items: center; /* Menempatkan elemen di tengah secara horizontal */
    justify-content: center; /* Menempatkan elemen di tengah secara vertikal */
    max-width: 900px;
    margin: 7em  auto ;
    
}

.profile-photo {
    width: 250px;
    height: 250px;
    border-radius: 70%;
    object-fit: cover;
    margin-right: 20px;
}

.profile-info {
    margin-right: 20px;
}

.social-links a {
    color: #ffffff;
    margin-right: 10px;
    text-decoration: none;
}

nav {
    height: 50px;
    text-align: center;
    align-items: center;
    padding: 0 20px ;
    border-radius: 10px;
    display: flex;
  

}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-end; /* Aligns the nav items to the right */
}

section#education ul li {
    color: rgb(66, 63, 63); /* Warna teks untuk daftar dalam section pendidikan */
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }

nav ul li {
    margin-left: 20px; /* Space between nav items */
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px; /* Add padding for better click area */
    border-radius: 5px; /* Rounded corners */
    transition: background 0.3s; /* Smooth transition for hover effect */
}

nav ul li a:hover {
    text-align: center;
    margin: 20px 0;
    background: rgb(87, 136, 121); /* Change background on hover */
    padding: 10 px 0;
    border-radius: 10px;
    position: sticky;
    top: 0;
    z-index: 100;

   
}

section {
    padding: 20px;
    margin: 10px;
    background:#c6e4e8;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.skill {
  text-align: cenrter;
  margin: 0 20px;
}

.container {
    display: flex; /* Mengaktifkan flexbox */
    justify-content: center; /* Posisi horizontal di tengah */
    align-items: center; /* Posisi vertikal di tengah */
    height: 100%; /* Pastikan container punya tinggi */
  }
  
  .icon {
    font-size: 3rem; /* Mengatur ukuran ikon lebih besar */
  }

.circle {
    position: relative;
    width: 120px;
    height: 120px;
    background: conic-gradient(
        #ecd1e2 calc(var(--percent) * 1%),
      #ccc9c9 0%
    );
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .inner-circle {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    font-weight: bold;
    color: #e8cfc4;
  }

  .skill span{
    color: rgb(65, 64, 64);
  }
  
.progress-bar {
    background: #fffefe;
    border-radius: 5px;
    overflow: hidden;
    height: 20px;
}

.progress {
    background: #e1a779;
    height: 100%;
    transition: width 0.5s;
}

.pro{
    display: flex;
    justify-content: center;
    align-items: center;
}

.apk{
    display: flex;
    justify-content: center;
    align-items: center;
}

.apk .skill{
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.apk .skill{
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.pro .skill img{
    justify-content: center;
    align-items: center;
    width: 50px;

}
.apk .skill img{
    justify-content: center;
    align-items: center;
    width: 50px;
}

footer {
    text-align: center;
    padding: 10px 0;
    background: #472e2e;
    color: #ffffff;
    position: relative;
    bottom: 0;
    width: 100%;
}                                                                                   