::-webkit-scrollbar {
    width: 10px; 
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(80, 80, 80, 1);
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(40, 40, 40, 1);
}

.verify {
    margin: auto;
}

* {
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}

.footer-container {
    background-color: rgb(40,40,40);
    padding-bottom: 4rem;
}

body {
    background-color: rgb(55, 55, 55);
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

footer {
    background-color: rgb(40,40,40);
    color: white;
    text-align: left;
    padding: 1rem;
}

.main {
    margin: 10px;
    margin-top: 25px;
    flex: 1;
}

h1, h2, h3, h4, h5, h6, p, label {
    color: white;
}

p {
    color: white;
}

a {
    color: lightblue;
}

input {
    background-color: rgb(80, 80, 80);
    border: none;
    color: white;
    display: block;
    margin: 0 auto;
    padding: 20px;
    font-size: 18px;
    width: 50%;
    max-width: 500px;
    box-sizing: border-box;
}

button {
    color: white;
    background-color: rgb(43, 43, 43);
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: rgb(35, 35, 35);
}

.scroll-container {
    width: 99vw;
    height: 500px;
    overflow: auto;
}

.scroll-container .content {
    height: 500px;
}

small {
    color: white;
}

code {
    font-family: 'Courier New', Courier, monospace;
    color: white;
}

#navbar-ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgb(40, 40, 40);
    position: fixed;
    top: 0;
    width: 100%;
}

#navbar-li {
    float: left;
}

#navbar-li a {
    display: block;
    background-color: rgb(40, 40, 40);
    color: white;
    padding: 14px 16px;
    text-align: center;
}

#navbar-li a:hover {
    background-color: rgb(20, 20, 20);
}

li {
    color: white;
}

pre {
    display: block;
    unicode-bidi: isolate;
    font-family: monospace;
    margin: 1em 0px;
    color: white;
}