.body {  
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.name {
    display: flex;
    justify-content: center; /* Memposisikan item horizontal di tengah */
    color:rgb(255, 255, 255);
    font-family: "Libertinus Serif", serif;
    font-weight: 700;
    font-style: normal;
    background-color: rgb(45, 45, 45);
    block-size: auto;
    padding: 15px 30px;
    border-radius: 10px;
    max-width: fit-content;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

.nav-menu-box {
    /* Style untuk kotak itu sendiri */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    background-color: rgb(45, 45, 45); /* warna background nyatu */
    block-size: auto;
    padding: 15px 30px;
    border-radius: 10px;
    max-width: fit-content;
    gap: 6px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
    cursor: pointer;
}

.btn {
  background:var(--accent);
  color:#fff; /* biar teks putih */
  text-decoration:none; /* ilangin underline kalau itu <a> */
  border:none;
  padding:10px 16px;
  border-radius:8px;
  cursor:pointer;
  font-weight: 600px;
  text-align: center;
  font-size:17px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn:hover{
  background: #000000; /* warna hover */
  color: #fff; /* tetep putih */
}

.biodata {
    display: flex;
    justify-content: center;
    font-size: larger;
    color: #fff;
    text-align: justify;
    margin-top: 50px;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.typing-text {
  overflow: hidden;
  border-right: 2px solid #fff;
  white-space: nowrap;
  font-family: monospace;
}