body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    width: 320px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.link-card {
    text-decoration: none;
    color: #3366ff;
    font-weight: bold;
    background-color: #e0e7ff;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s;
    text-align: left;
}

.link-card i, .link-card .icon {
    font-size: 1.5em;
    width: 24px;
    height: 24px;
}

.link-card:hover {
    background-color: #c7d2fe;
    transform: scale(1.05);
}

.link-card .icon {
    width: 24px;
    height: 24px;
    color: #3366ff; /* Apply your desired color */
}

/* Global styling for the SVG */
.link-card .icon {
    width: 24px;
    height: 24px;
}

/* Adjust SVG size specifically for mobile */
@media (max-width: 600px) {
    .link-card .icon {
        width: 18px;  /* Reduce size for mobile */
        height: 18px;
    }
}

