*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body{
    min-height:100vh;
    padding-top:90px;

    background: linear-gradient(
        135deg,
        #2e5aa7 0%,
        #86c5ff 50%,
        #f8e6a0 100%
    );
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.nav-link {
    display: flex;
    list-style: none;
    gap: 25px;
    margin-left: auto;
    padding: 0;
    margin: 0;
}
.nav-link li a {
    color: #2e5aa7;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
} 

.nav-link li a:hover {
    color: #ffa628;
}

.logo img{

    height:70px;

    width:auto;

    display:block;

    transition:0.3s;

}

.logo img:hover{

    transform:scale(1.05);

}

.about{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:80px;

    max-width:1200px;
    margin:auto;

    padding:120px 40px 80px;
}

.about-section{
    width:90%;
    margin:140px auto 80px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:80px;

    animation: slideUp 1s ease;
}

.about-text p{
    text-align: justify;
}

.about-image{
    width:40%;
}

.about-text h1{
    font-size:60px;
    color:#f8e6a0;
    margin-bottom:25px;
}

.about-text p{
    color:white;
    font-size:24px;
    line-height:1.8;
    margin-bottom:30px;
}
/*foto profile*/
.about-image{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

}

.about-image img{

    width:330px;

    height:520px;

    object-fit:cover;

    border-radius:50%;

    background:white;

    border:5px solid #f8e6a0;

    position:relative;

    z-index:3;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.2);

}


.cross.yellow{

    position:absolute;

    width:120px;

    height:120px;

    bottom:80px;

    right:40px;

    z-index:4;

}


/*skill*/
.skill-list{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:30px;
}

.skill-item{

    background:rgba(255,255,255,0.8);

    color:#2e5aa7;

    padding:12px 25px;

    border-radius:50px;

    font-weight:bold;

    cursor:default;

    transition:0.3s;
}

.skill-item:hover{

    transform:translateY(-5px);

    background:#f8e6a0;

    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

/*transisi*/
.slide-left{

    animation:
    slideLeft 1s ease forwards;

}

@keyframes slideLeft{

    from{

        opacity:0;

        transform:
        translateX(-80px);

    }

    to{

        opacity:1;

        transform:
        translateX(0);

    }

}

.slide-right{

    animation:
    slideRight 1s ease forwards;

}

@keyframes slideRight{

    from{

        opacity:0;

        transform:
        translateX(80px);

    }

    to{

        opacity:1;

        transform:
        translateX(0);

    }

}