html {
    background-color: #181a1b !important;
    color-scheme: dark !important;
}

html,
body {
    background-color: #181a1b;
    font-family: monospace;
    border-color: #736b5e;
    color: #e8e6e3;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: #3391ff;
}

table {
    border-color: #545b5e;
}

::placeholder {
    color: #b2aba1;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    background-color: #404400 !important;
    color: #e8e6e3 !important;
}

::-webkit-scrollbar {
    background-color: #202324;
    color: #aba499;
}

::-webkit-scrollbar-thumb {
    background-color: #454a4d;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #575e62;
}

::-webkit-scrollbar-thumb:active {
    background-color: #484e51;
}

::-webkit-scrollbar-corner {
    background-color: #181a1b;
}

* {
    scrollbar-color: #454a4d #202324;
}

::selection {
    background-color: #004daa !important;
    color: #e8e6e3 !important;
}

::-moz-selection {
    background-color: #004daa !important;
    color: #e8e6e3 !important;
}

.container {
    font-size: large;
    width: 70%;
    margin: 0 auto;
    padding: 2ex;
    flex: 1;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .container {
        width: 80%;
    }
}

@media only screen and (max-width: 767px) {
    .container {
        width: 95%;
        padding: 10px;
    }
}