/* styles.css */
body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(180deg, #918484, #af9f9f);
    font-family: Arial, sans-serif;
    color: #ffffff;
}

/* Background image styling */
.background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    opacity: 0.1; /* Adjust the transparency level here */
    z-index: -1; /* Ensures the image stays behind the content */
}

/* Tambahan gaya lainnya */
.container {
    position: relative; /* Set .container to relative so .background-image positions correctly */
    text-align: center;
    width: 100%;
    max-width: 350px;
}

.profile-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}

p {
    font-size: 16px;
    margin-bottom: 20px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.2s;
}

.link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.icon {
    margin-right: 10px;
    font-size: 20px;
}

.dots {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-icons a {
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
}

/*.footer-button {*/
/*    padding: 10px 20px;*/
/*    background-color: #ffffff;*/
/*    color: #B00000;*/
/*    font-weight: bold;*/
/*    border: none;*/
/*    border-radius: 20px;*/
/*    cursor: pointer;*/
/*    margin-top: 20px;*/
/*    transition: transform 0.2s;*/
/*}*/

.footer-button:hover {
    transform: scale(1.05);
}

.icon {
    width: 30px; /* Sesuaikan dengan ukuran yang diinginkan */
    height: 30px;
    vertical-align: middle; /* Agar ikon berada di tengah vertikal */
    margin-right: 8px; /* Spasi antara ikon dan teks */
}
