.webring-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;    /* Center vertically within the space */
    gap: 0px;
    font-size: 24px;
    min-height: 40px;      /* Set a minimum height for the footer */
    text-align: center;
}

.webring-container a:first-child {
    margin: 0 8px; 
}

/* Optional: Style the logo and arrows further for better visual balance */
.webring-container img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.webring-container img:hover {
    opacity: 1.0;
}