body, html {
    width: 100%;
    height: 100%;
    margin: 0;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgb(15, 15, 15);
}

::-webkit-scrollbar-thumb {
    background: #2b2b2b;
}

::-webkit-scrollbar-thumb:hover {
    background: #824d34;
}

div.title {
    height: 42px;
    border-bottom: 2px solid rgb(60, 60, 60);
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    color: rgb(60, 60, 60);
}

body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #181818 !important;
    font-family: 'Roboto', sans-serif;
}

.input {
    background-color: rgb(15, 15, 15);
    border: none;
    color: rgb(130, 132, 98);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    /* Safari */
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 2px;
}

.input:hover {
    border-radius: 12px;
}

.label {
    border: none;
    color: rgb(130, 132, 98);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 32px;
    margin: 4px 2px;
    border-radius: 2px;
}

.error_text {
    border: none;
    color: rgb(231, 85, 66);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 24px;
    margin: 4px 2px;
    border-radius: 2px;
}

.ok_text {
    border: none;
    color: rgb(127, 231, 66);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 24px;
    margin: 4px 2px;
    border-radius: 2px;
}

.button {
    background-color: rgb(130, 132, 98);
    border: none;
    color: rgb(20, 37, 1);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    /* Safari */
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 2px;
}

.button:hover {
    border-radius: 12px;
}

a {
    text-decoration: none;
    color: #824d34;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 11px;
    text-align: center;
    color: #2b2b2b;
    background-color: rgb(15, 15, 15);
    clear: both;
}