* {
    margin: 0;
}

html {
    color: #f0f8ff77;
    margin-right: calc(-1 * (100vw - 100%));
    overflow-x: hidden;
    overflow-y: scroll;
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -moz-text-size-adjust: none;
    min-width: 600px;
}

@property --pos {
    syntax: 'percentage';
    inherits: true;
    initial-value: 0%;
}

@property --posoffset {
    syntax: 'length';
    inherits: true;
    initial-value: 0px;
}

hr {
    color: #f0f8ff77;
}

a {
    text-decoration: none;
    font-weight: none;
    width: 100%;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}

body {
    overflow-x: hidden;
    padding: 0;
    background: linear-gradient( 90deg, hsl(0, 0%, 15%), hsl(0, 0%, 7%), hsl(0, 0%, 5%), hsl(0, 0%, 5%), hsl(0, 0%, 7%), hsl(0, 0%, 15%));
    background-size: 100% 100%;
    scrollbar-width: thin;
    overflow-y: scroll;
    overflow: hidden;
    width: 100%;
    min-width: 600px;
    height: 100%;
}

button {
    background-color: #38383800;
    border: 1.5px solid #333333;
    border-radius: 20px;
    color: white;
    padding: 10px 10px;
    text-align: center;
    text-decoration: none;
    text-shadow: #000b 0px 0 10px;
    display: inline-block;
    cursor: pointer;
    -webkit-transition: border 200ms ease-out;
    -moz-transition: border 200ms ease-out;
    -o-transition: border 200ms ease-out;
    transition: border 200ms ease-out;
}

button:hover {
    border: 1.5px solid rgb(160, 200, 200);
}

input[type=text] {
    background-color: #38383800;
    border: 1.5px solid #a3a3a3;
    word-wrap: break-word;
    word-break: break-all;
    border-radius: 10px;
    height: 30px;
    margin: 2px;
    text-align: center;
}

input[type=password] {
    background-color: #38383800;
    border: 1.5px solid #a3a3a3;
    word-wrap: break-word;
    word-break: break-all;
    border-radius: 10px;
    height: 30px;
    margin: 2px;
    text-align: center;
}

textarea[type=text] {
    background-color: #38383800;
    border: 1.5px solid #a3a3a3;
    word-wrap: break-word;
    word-break: break-all;
    border-radius: 10px;
}

table,
th,
tr,
td {
    border: 1px solid #ffffff33;
    border-collapse: collapse;
}

table,
tr {
    width: 100%;
}

th,
td {
    padding-left: 20px;
    padding-right: 20px;
}

table {
    margin-top: 16px;
    margin-bottom: 16px;
}

.t_right {
    text-align: right;
}

.t_left {
    text-align: left;
}

::-webkit-scrollbar {
    width: 5px;
    background: #000000FF;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px #FFFFFF66;
    border-radius: 0px;
}

::-webkit-scrollbar-thumb {
    background: #FFFFFFCC;
    border-radius: 8px;
    box-shadow: inset 0 0 8px #00000066;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFFFFF99;
}