body {
    font-family: Arial, sans-serif;
    background: linear-gradient(270deg, #b7fbb7, #98f69b);
    background-size: 400% 400%;
    animation: gradientAnimation 5s ease infinite;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Mengubah dari center ke flex-start untuk scroll */
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
    position: relative;
    height: auto; /* Ubah dari 100vh ke auto */
}

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

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.588);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(192, 192, 192, 0.551);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 1;
    overflow: visible; /* Mengubah dari hidden ke visible */
    max-height: none; /* Menghapus batasan tinggi */
}

.logo {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 20px auto;
}

.profile {
    margin-bottom: 20px;
}

.profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #4caf50;
}

.profile h1 {
    font-size: 24px;
    margin: 10px 0 5px;
    color: #4caf50;
}

.profile p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.links a {
    display: block;
    background-color: #4caf50;
    color: white;
    padding: 10px;
    margin: 10px 0;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.links a:hover {
    background-color: #388e3c;
}

.links a i {
    margin-right: 8px;
}

.map-container {
    margin: 20px 0;
    border: 2px solid #4caf50;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 200px;
    border: none;
}

.footer {
    margin-top: 20px;
    font-size: 14px;
    color: #4caf50;
    z-index: 2;
    position: relative;
}

.footer a {
    color: #4caf50;
    text-decoration: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.543);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    animation: move 10s ease-in-out infinite;
    z-index: 0;
}

.circle1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
}

.circle2 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    right: 10%;
}

.circle3 {
    width: 75px;
    height: 75px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes move {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -30px); }
    50% { transform: translate(-30px, 30px); }
    75% { transform: translate(30px, 30px); }
}
