* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(rgba(2,0,36,1) 0%, rgba(47,47,77,1) 35%, rgba(0,212,255,1) 100%);
    transition: background 1s ease-in-out;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    position: relative;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 8px rgb(4, 29, 25);
    padding: 20px;
    width: 400px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 0 rgb(10, 66, 73);
    transform: translateY(-5px);
}

.card img#avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.card h3#konten {
    font-size: 45px;
    margin-bottom: 10px;
    color: #333333;
}

.card p#ug {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #0699fc;
}
.card p#rate {
    font-size: 18px;
    color: #28a745;
    margin-top: 10px;
}

#contact-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* sosial icon */
.social-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.social-icons i {
    font-size: 50px;
    color: #5555;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.social-icons #telegram:hover {
    color: #2AABEE; /* Warna merah muda untuk Instagram */
}

.social-icons #github:hover {
    color: #333; /* Warna hitam untuk GitHub */
}

.social-icons #wa:hover {
    color: #25d366; /* Warna hijau untuk WhatsApp */
}