.enlarge {
    font-size: 24px !important;
}

/* Centered Social Media Icons */
.centered-social-icons {
    text-align: center; /* Center the icons horizontally */
    padding: 10px 0; /* Add some top and bottom padding for spacing */
}

.centered-social-icons ul {
    list-style: none;
    padding: 0;
    display: flex; /* Use flexbox to align items horizontally */
    align-items: center; /* Center items vertically within the div */
    justify-content: center; /* Center items horizontally within the div */
}

.centered-social-icons li {
    margin: 0 10px; /* Add some space between icons (adjust as needed) */
}

.centered-social-icons a {
    text-decoration: none;
    color: white; /* Set the icon color to white */
    font-size: 24px; /* Icon size (adjust as needed) */
    opacity: 0.5; /* Set initial opacity to 50% */
    transition: opacity 0.3s; /* Add a smooth transition on hover */
}

/* Change the icon color and opacity on hover */
.centered-social-icons a:hover {
    color: white;
    opacity: 1; /* Set opacity to 100% on hover */
}
