:root {
    --main: rgb(44, 44, 44);
}

body {
    margin: 0;
    padding: 0;
}

.main {
    width: 100%;
    height: fit-content;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--main);
    display: flex;
    flex-direction: column;
}

.webpage {
    width: 100%;
    height: fit-content;
    text-align: center;
    align-content: top;
    background-color: rgb(37, 37, 37);
    cursor: auto;
}

.webpage * {
    color: white;
}

.webpage h1 {
    margin-bottom: 10px;
}

.webpage hr, .webpage .hr {
    width: 80%;
    background-image: linear-gradient(to right, transparent, white, transparent);
    height: 2px;
    margin: auto;
}

.foot {
    width: calc(100% - 20px);
    height: fit-content;
    bottom: 0;
    background-color: rgb(80, 80, 80);
    padding: 10px;
}

.foot * {
    color: rgb(255, 255, 255);
    margin: auto;
    transition: color 0.35s;
}

.foot a {
    color: black;
    text-decoration: none;
}

.foot a:hover {
    color: rgb(255, 255, 255);
}

.foot p{
    font-weight: bold;
}

.foot a{
    font-weight: 100;
}

a {
    user-select: auto;
}

body::-webkit-scrollbar {
    background-color: rgb(145, 145, 145);
}

body::-webkit-scrollbar-thumb {
    background-color: rgb(97, 97, 97);
    border: 1px solid transparent;
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: rgb(56, 56, 56);
}

body::-webkit-scrollbar-thumb:active {
    background-color: rgb(40, 40, 40);
}

#tac {
    color: rgb(0, 175, 255);
}

#tac:hover {
    color: rgb(0, 126, 175);
}

h3, h4, h1, h2, p {
    cursor: url('../pics/text_cursor.png') 16 16, text;
}

.foot p {
    cursor: auto;
}

.foot table tr td {
    text-align: center;
}