body{
    margin:0;
    padding:0;
    font-family:'Segoe UI',sans-serif;
    background:#FDF9FA;
    color:#555;
}

/* HERO */

.hero{
    background:linear-gradient(135deg,#D8A8B8,#E9C7D2);
    color:white;
    padding:80px 0;
}

.profile-img{
    width:180px;
    height:180px;
    border-radius:50%;
    object-fit:cover;
    border:6px solid #fff;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.hero h1{
    font-weight:bold;
    font-size:45px;
}

.hero h5{
    font-weight:400;
    letter-spacing:1px;
}

/* CARD */

.card{
    border:none;
    border-radius:18px;
    background:#fff;
    box-shadow:0 8px 25px rgba(216,168,184,.18);
    margin-bottom:30px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
}

/* JUDUL */

.section-title{
    color:#C98FA3;
    font-weight:bold;
    margin-bottom:20px;
}

/* SKILL */

.skill{
    display:inline-block;
    background:#D8A8B8;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    margin:6px;
    transition:.3s;
}

.skill:hover{
    background:#C98FA3;
}

/* BUTTON */

.btn-pink{
    background:#D8A8B8;
    color:white;
    border:none;
    border-radius:30px;
    padding:10px 25px;
}

.btn-pink:hover{
    background:#C98FA3;
    color:white;
}

/* FOOTER */

footer{
    margin-top:60px;
    background:#D8A8B8;
    color:white;
    text-align:center;
    padding:20px;
}

/* RESPONSIVE */

@media(max-width:768px){

.hero{
    text-align:center;
}

.profile-img{
    margin-bottom:25px;
}

.hero h1{
    font-size:35px;
}

}
.project-list{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
    margin-top:20px;
}

.project-box{
    background:#FDF4F7;
    border:2px solid #E8C2CF;
    border-radius:18px;
    padding:20px;
    transition:.3s;
}

.project-box:hover{
    transform:translateY(-5px);
    background:#D8A8B8;
    color:#fff;
    box-shadow:0 8px 20px rgba(216,168,184,.4);
}

.project-box h5{
    color:#C98FA3;
    margin-bottom:10px;
    font-weight:600;
}

.project-box:hover h5{
    color:#fff;
}

.project-box p{
    margin:0;
    text-align:justify;
    font-size:15px;
    line-height:1.6;
}