/* If text is added to the Summon Homepage footer, the font is increased to 24 px */
.home .footer .links-container a {
    text-decoration: none;
    font-size: 24px;
    transition: color .2s;
}
/* Changes text color to black for navigation and card titles on the homepage. Meets WCAA II accessibility â€“ black on gold background */
.home .home h2, .home .about-library, .home .about-library a, .home .footer, .home .footer a, .home .linked-cards .title {
    color: black;
    font-size:16px;
}
/*Changes font size for right links on navbar*/
.customLinks>li .btn-link {
    font-size: 18px;
}
/* Changes font size for buttons on the homepage left side of home page nav bar*/
.btn {
    font-size:18px;
}
/* Increase height of logo to better fit homepage */
.home .logo {
    width: auto;
    max-height: 100px;
}
/* Aligns the logo to the left side of the header */
.home .siteHeader .header-logo {
    justify-self: left;
}

#topLinks button.tab {
    height: 55px; 
}
/* Center the logo container */
.header-logo {
    display: flex !important;
    justify-content: center !important;   /* centers horizontally */
    align-items: center !important;       /* centers vertically */
    width: 100% !important;               /* allow container to span header */
    margin: 0 auto !important;
    padding: 0 !important;
}

/* Shrink-wrap the link to the image */
.header-logo a {
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
}

/* Ensure the image itself doesn’t stretch */
.header-logo img {
    display: inline-block !important;
    height: auto !important;
    width: auto !important;
    max-width: 100% !important;
}
