#croatian-glossary {
    font-family: Arial, sans-serif;
    max-width: 100%;
}

.alphabet-selection {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1em;
}

.alphabet-selection a {
    display: inline-block;
    margin: 0 5px;
    padding: 5px 10px;
    text-decoration: none;
}

.letter-section {
    margin-bottom: 2em;
}

.letter-section::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    margin: 1.5em 0;
}

.letter-section h2 {
    margin-bottom: 1em;
}

.letter-section ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    justify-content: center;
}

.letter-section li {
    list-style-type: none;
    flex: 0 0 50%;
    display: inline-block;
    width: calc(100% / 2);
    justify-content: center;
    box-sizing: border-box;
    padding: 1em;
}

.letter-section li a {
    display: inline-block;
    max-width: 100%;
    padding: 1em;
    color: #000de3 !important;
}

.letter-section li a:hover {
    background-color: #e0e0e0;
}