body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #1e1e2e;
    color: #fff;
}
header {
    background: #6c5ce7;
    text-align: center;
    padding: 20px;
}

header h1 {
    font-size: 20px; /* Sesuaikan ukuran sesuai kebutuhan */
}

.container {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}
.profile {
    text-align: center;
    padding: 10px;
    background: #2d2d4b;
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    width: 50%;
    margin-bottom: 10px;
}
.profile:hover {
    transform: scale(1.05);
}
.profile img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 5px;
    border: 3px solid #6c5ce7;
}
.info-container {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
}
.projects, .contact {
    flex: 1;
    padding: 15px;
    background: #2d2d4b;
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}
.projects:hover, .contact:hover {
    transform: scale(1.02);
}
.about {
    margin-top: 10px;
    padding: 15px;
    background: #2d2d4b;
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.3);
    width: 100%;
    transition: transform 0.3s ease;
}
.about:hover {
    transform: scale(1.02);
}
.contact a {
    color: #6c5ce7;
    text-decoration: none;
    font-weight: bold;
}
.contact a:hover {
    text-decoration: underline;
}
footer {
    text-align: center;
    padding: 20px;
    background: #6c5ce7;
    margin-top: 10px;
    color: #fff;
    font-weight: bold;
}