body {
    margin: 0;
    padding: 0;
    background-color: antiquewhite;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    height: 100vh;
}

a {
    color: #70422c;
}

.content {
    display: flex;
    flex-direction: column;
    padding: 10px 10px 0 10px;
    flex-grow: 1;
}

.title {
    text-align: center;
}

.footer {
    text-align: center;
    padding: 10px;
    background-color: bisque;
}

.search-form form {
    display: flex;
    justify-content: center;
}

.notes {
    width: 60%;
    min-width: 100px;
    margin: 0 auto;
}

.autocomplete {
    position: relative;
    display: inline-block;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}

.autocomplete-items div:hover {
    background-color: #e9e9e9;
}

.autocomplete-active {
    background-color: DodgerBlue !important;
    color: #ffffff;
}

.words-display ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

.words-display li {
    cursor: pointer;
    margin: 0 10px;
    text-decoration: underline;
}

.rhyme-display {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.rhyme-display ul {
    list-style: none;
    padding: 0;
    columns: 4;
    width: fit-content;
}

.rhyme-display li {
    margin: 0px 10px;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: #ecdfb5;
    color: #000000;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition-duration: 0.2s;
}

.tooltip-text-active {
    visibility: visible;
    opacity: 1;
}

.word-selected {
    font-weight: bold;
}

.paging {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.paging button {
    width: 30px;
}

.paging span {
    padding: 5px;
}