/* Reset dan dasar tata letak */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9; /* Latar belakang terang dan netral */
    color: #333; /* Teks gelap untuk kontras yang baik */
    height: 100vh; /* Memenuhi seluruh tinggi layar */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.container {
    background: #fff; /* Latar belakang putih untuk area konten */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Bayangan lembut */
    width: 100%;
    max-width: 800px; /* Lebar maksimal kontainer */
}

/* Header */
header {
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5rem;
    color: #333; /* Teks header gelap */
    font-weight: 600;
}

/* Profil */
.profile {
    margin-bottom: 40px;
}

.profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #007BFF; /* Warna biru cerah untuk aksen */
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.05); /* Efek hover modern */
}

h2 {
    font-size: 1.6rem;
    color: #007BFF; /* Warna biru cerah untuk nama */
    margin-bottom: 10px;
}

p {
    font-size: 1.1rem;
    margin: 8px 0;
}

/* Bio */
.bio {
    background: #f9f9f9; /* Latar belakang abu-abu terang */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

h3 {
    color: #007BFF;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Footer */
footer {
    font-size: 0.9rem;
    color: #777; /* Teks footer abu-abu */
    margin-top: 25px;
    opacity: 0.8;
}

/* Animasi dan latar belakang */
body {
    background: url('https://source.unsplash.com/1600x900/?space,stars') no-repeat center center fixed;
    background-size: cover;
    animation: starry 60s linear infinite;
}

@keyframes starry {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
}