html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font: normal 16px / 24px "Roboto", Helvetica, Arial, Verdana, sans-serif;
}

body {
    transition: background-color .5s;
}

.container {
    border: none;
    box-shadow: 0px 0px 10px 0px gray;
    margin: auto;
    max-width: 1100px;
}

.inner {
    display: flex;
}

.center-box {
    border: none;
    margin: auto;
    width: 60%;
    min-height: 700px;
    margin-top: 10px;
    padding: 10px;
}

.title {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

#srch {
    margin-top: 2px;
    padding: 8px;
    border-radius: 5px;
    width: 200px;
    background-color: #fcfcfc;
    margin-left: 15px;
}

.find {
    margin-top: 4px;
    padding: 7px;
    background-color: #055380;
    color: white;
    border-radius: 5px;
    width: 70px;
    font-weight: bold;
}

.find:hover {
    border-color: rgb(62, 157, 235);
}

.words {
    border: none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    margin: 10px auto;
}

.wrd {
    border: 2px solid #e5e5e5;
    width: 32px;
    height: 32px;
    text-align: center;
    background-color: #f5f5f5;
    line-height: 33px;
    margin: 0 0 0.6em;
}

.active-wrd {
    color: #1f7d9a;
    text-decoration: none;
}

.not-active {
    color: #adadad;
    cursor: default;
}

.big_word {
    font-weight: bold;
    font-size: 30px;
    margin: 20px;
    text-transform: uppercase;
}

hr {
    border: none;
    border-bottom: solid 1px gray;
    width: 95%;
    margin: 10px auto;
}

.names {
    border: none;
    min-height: 80px !important;
    padding-left: 40px;
}

.a-color {
    color: #006fb7;
    text-decoration: none;
    line-height: 25px;
}

.back-to-top {
    float: right;
    margin-right: 30px;
    margin-top: 10px;
}

.top-a {
    color: #3b8ced;
    text-decoration: none;
    font-size: 10px;
    text-transform: uppercase;
    word-spacing: 2px;
}

.top-a::before,
.top-a::after {
    content: ' ';
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    border: solid #3b8ced;
    border-width: 0 1.8px 1.8px 0;
    display: inline-block;
    padding: 1.5px;
}

@media only screen and (max-width: 760px) {
    .inner {
        flex-direction: column;
    }
    .center-box {
        width: 100%;
        margin: auto;
    }
}