.font-times {
    font-family: "Times New Roman", Times, serif;
}
.font-georgia {
    font-family: Georgia, serif;
}
.text-bold {
    font-weight: bold;
}
.text-center {
    text-align: center;
}

.social-links {
    display: inline-flex;          /* Align links horizontally */
    justify-content: center;       /* Center horizontally */
    align-items: center;           /* Vertically align text and icons */
    gap: 1rem;                     /* Add spacing between links */
    margin-top: 1rem;              /* Add space below the name */
}

.social-links a {
    display: flex;                 /* Ensure icons and text align in a row */
    align-items: center;           /* Vertically center icon and text */
    text-decoration: none;         /* Remove link underline */
    color: inherit;                /* Inherit text color */
}

.social-links i {
    margin-right: 0.5rem;          /* Add space between icon and text */
}
