/* Styling dasar */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, rgb(70, 82, 133), #764ba2);
    color: white;
    text-align: center;
}

/* Header */
header {
    margin-top: 50px;
}

.highlight {
    color: #ffeb3b;
    font-weight: bold;
}

/* Kontainer Profil */
.profile-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    margin: 50px 0;
    position: relative;
}

/* Gambar Profil */
.profile {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    animation: bounce 2s infinite alternate;
}

.profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animasi Gambar Bergerak */
@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* Info Profil */
.profile-info {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    width: 60%;
    animation: fadeIn 2s ease-in-out;
}

/* Animasi Fade In */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Footer */
footer {
    margin-top: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 14px;
}