body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    background-color: #f8f8f8;
}

.container {
    display: flex;
    width: 100%;
    max-width: 1100px;
    min-height: 100vh;
}

.left {
    flex: 1;
    background-color: #fff;
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.left img {
    width: 280px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.left h1 {
    font-size: 28px;
    margin: 20px 0 5px;
}

.pronoun {
    font-size: 20px;
    display: block;
    margin-top: 5px;
}

.title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.button {
    display: inline-block;
    background-color: #1a1a1a;
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 4px;
    margin: 10px 5px;
    font-weight: bold;
}

.button:hover{
    background-color: grey;
}


.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #000;
    font-size: 24px;
    margin: 0 10px;
    text-decoration: none;
}

.right {
    flex: 2;
    background-color: #999;
    color: #111;
    padding: 60px 40px;
}

.right h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #111;
}

.right p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
}

.buttons {
    margin-top: 40px;
    align-items: center;
    justify-content: center;
}

.buttons .button {
    margin-right: 20px;
    align-items: center;
    justify-content: center;
}

/* Portfolio page styles */
.portfolio-body {
    background-color: #f8f8f8;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.portfolio-header {
    text-align: center;
    background-color: #999;
    color: #111;
    padding: 40px 20px;
}

.back-button {
    display: inline-block;
    margin-top: 10px;
    background-color: #1a1a1a;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.projects {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: auto;
}

.project-card {
    display: flex;
    gap: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card img {
    width: 220px;
    height: 150px;
    object-fit: cover;
}

.project-info {
    padding: 15px;
}

.project-info h3 {
    margin: 0;
    font-size: 20px;
    color: #000;
}

.project-info p {
    margin-top: 8px;
    color: #333;
}

.header-buttons {
  display: flex;
  flex-direction: column;  /* ubah dari row ke column */
  gap: 10px;               /* kasih jarak antar tombol */
  margin-bottom: 15px;     /* jarak dengan tombol bawah (Back) */
}

.header-button {
  background-color: black;
  color: white;
  padding: 10px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  width: fit-content;
  transition: background-color 0.3s ease;
}

.header-button:hover {
  background-color: grey;
}
