.wrapper {
    max-width: 1920px;
}
.main_section {
    display: flex;
    justify-content: center;
    padding-bottom: 200px;
    background-image: url("/img/synonymer-ordbog-background.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.main_heading {
    color: #ffffff;
    font-size: 48px;
    font-family: var(--standard-text-font);
    font-weight: bold;
    margin-bottom: 20px;
}
.main_text {
    color: #ffffff;
    font-size: 20px;
    font-family: var(--standard-text-font);
    font-weight: normal;
    margin-bottom: 50px;
}
.inner_main_section {
    max-width: 70%;
    padding-top: 110px;
}
.main_search {
    width: 100% !important;
    height: 70px !important;
}
.browse_synonyms {
    margin: 80px 0 125px 0;
}
.browse_inner_synonyms {
    max-width: 70%;
    margin: 0 auto;
}
.heading_browser_section {
    color: #000;
    font-size: 42px;
    margin-bottom: 30px;
}
.browse_letter {
    display: grid;
    gap: 1em;
    grid-template-columns: repeat(auto-fill, minmax(70px, 70px));
    max-width: 75%;
}
.browsing_letter {
    list-style-type: none;
    display: flex;
}
.browsing_letter_anchor {
    display: flex;
    border: 2px solid #263c76;
    font-family: var(--standard-text-font);
    width: 65px;
    height: 65px;
    justify-content: center;
    align-items: center;
    color: #000;
    text-decoration: none;
    font-size: 21px;
}
.browsing_letter_anchor:hover {
    border: 1px solid transparent;
    background-color: #3965B6;
    color: #fff;
}
@media screen and (max-width: 900px) {
    .inner_main_section {
        max-width: 90%;
        padding-top: 50px;
    }
    .browse_inner_synonyms {
        max-width: 90%;
    }
    .main_heading {
        font-size: 32px;
    }
    .main_text {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .browse_letter {
        max-width: 100%;
    }
}
