body{
    background-color: #191919;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, p, a, th, td, li, select, option{
    font-family: "Fira Sans", sans-serif;
    color: white;
}
nav{
    background-color: #464646;
    border-bottom: 1px solid red;
}
.fa-language{
    color: white;
}
#gh{
    font-size: 14px;
    text-align: center;
    margin: 0;
}
#main_a{
    text-decoration: none;
}
.navbar {
    position: relative;
    overflow: hidden;
    padding: 30px !important;
}
footer{
    background-color: #464646;
    bottom: 0;
    border-top: 1px solid red;
    padding: 10px;
}
main {
    flex: 1;
}
::selection{
    background-color: red;
    color: black;
}
:-moz-selection{
    background-color: red;
    color: black;
}
#rc{
    border-left: 1px solid red;
}
ul{
    list-style-type: none;
    padding: 0;
}
li{
    padding: 10px;
}
footer h6{
    margin: 0;
}
#settings{
    width: 800px;
    position: absolute;
    height: 600px;
    background-color: #464646;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    display: none;
    border: 1px solid red;
}
#settings h3{
    margin-top: 10px;
}
#settings p{
    margin-left: 30px;
}
#settings .btn-danger{
    position: absolute;
    bottom: 0;
    margin-bottom: 10px;
    left: 0;
    width: 80px;
    margin-left: 46%;
}
#main_a, footer h6 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
table{
    table-layout: fixed;
}
td{
    vertical-align: middle;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #464646; 
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #C7C7C7; 
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #8B8B8B; 
}
@keyframes link_hover {
    from {color: white;}
    to {color: red;}
}
a:hover, .fa-language:hover, #n_main:hover{
    animation: link_hover 0.5s forwards;
}
#menupont{
    display: flex;
    margin-right: auto;
    flex-wrap: wrap;
}
#menupont button{
    margin-top: -7px;
    height: 100%;
    width: 108px;
    margin-left: 10px;
}
#menupont input{
    border-radius: 8px;
    width: 108px;
    height: 40px;
    margin-top: -7px;
    margin-left: 139px;
    border: none;
    padding: 0;
}
.desc{
    font-size: small;
}
@media only screen and (max-width: 800px) {
    #settings{
        display: none !important;
    }
}
.alert{
    display: none;
}