html {
  scrollbar-width: thin; /* Options: auto, thin, none */
  scrollbar-color: #888 #14120b; /* thumb color, track color */
  margin: 0;
  padding: 0;
}

body {
    background-color: rgb(44, 45, 43);
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.content-wrapper {
    flex: 1;
}

h1 {
    color: white;
    font-family: monospace;
    text-align: center;
    margin-top: 16%;
    margin-bottom: -1%;
    font-size: 6.5em;
}

p {
    color: white;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    font-size: 1.4em;
    margin-top: -1.5%;
}

.line-space {
    margin-top: 2%;
}

.invt_btn {
    display: block;
    width: 110px;
    height: 40px;
    margin: 0 auto;
    background-color: #5865F2;
    color: white;
    text-align: center;
    line-height: 40px;
    font-size: 1.2em;
    text-decoration: none;
    margin-right: 0%;
    font-family:Arial, Helvetica, sans-serif ;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.invt_btn:hover {
    background-color: #3b4cc0;
}

.sppt_btn {
    display: block;
    width: 150px;
    height: 40px;
    margin: 0 auto;
    background-color: #f25858;
    color: white;
    text-align: center;
    line-height: 40px;
    font-size: 1.2em;
    text-decoration: none;
    margin-left: 1%;
    margin-right: 0%;
    font-family:Arial, Helvetica, sans-serif ;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.sppt_btn:hover {
    background-color: #c03b3b;
}

.github_btn {
    display: block;
    width: 140px;
    height: 40px;
    margin: 0 auto;
    background-color: #9d58f2;
    color: white;
    text-align: center;
    line-height: 40px;
    font-size: 1.2em;
    text-decoration: none;
    margin-left: 1%;
    font-family:Arial, Helvetica, sans-serif ;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.github_btn:hover {
    background-color: #803bc0;
}

.btns {
    display:flex;
    margin: auto;
}

.prvc {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.prvc:hover {
    color: rgba(255, 255, 255, 0.538);
}

.tos {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tos:hover {
    color: rgba(255, 255, 255, 0.538);
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #16161600;
    color: white;
    padding: 20px 40px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    font-size: 15px;
}