@font-face {
    font-family: Munich;
    src: url("fonts/MUNICH SANS.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

body {
    background-color: rgb(0, 0, 0);
    padding: 0;
    margin: 0;
    height: 100%;
    overflow-y: hidden;
    max-width: 100%;
    overflow-x: hidden;
    font-family: Munich, sans-serif;
}
 

.click {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}





a:link {
    color: white;
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: rgb(253, 253, 253);
    background-color: transparent;
    text-decoration: underline;
}

a:visited {
    color: white;
    background-color: transparent;
    text-decoration: none;
}

.badge {
    position: fixed;
    bottom: -5px;
    right: 0;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #070706;
    color: #242526;
    text-align: center;
    font-family: Munich, sans-serif;
    padding: 10px 0;  /* Added padding to footer */
}

.row-centered {
    text-align: center;
}

h2 {
    margin: 20ch 0 20px 0;  /* Added bottom margin */
    font-size: 10px;
}

.description {
    font-size: 17px;
    margin-bottom: 15px;  /* Added bottom margin */
}

input[type=text], input[type=number] {
    background-color: rgb(44, 44, 44);
    padding: 10px 12px;  /* Increased padding inside inputs */
    font-size: 16px;
    border: solid 1px rgb(133, 133, 133);
    border-radius: 3px;
    color: white;
    width: 250px;
    font-family: Munich, sans-serif;
    margin-bottom: 15px;  /* Added bottom margin */
}

input[type=submit] {
    padding: 10px 12px;  /* Increased padding */
    font-size: 16px;
    border: solid 1px rgb(133, 133, 133);
    background-color: rgb(61, 61, 61);
    border-radius: 3px;
    color: white;
    margin-bottom: 20px;  /* Added bottom margin */
}

input[type=text]:focus {
    outline: none;
}

div.lookup {
    margin-top: 30px;
    width: 50%;
    text-align: center;
    display: inline-block;
    margin-bottom: 20px;  /* Added bottom margin */
}

div.results {
    width: 50%;
    background-color: rgb(61, 61, 61);
    border: solid 1px gray;
    border-radius: 3px;
    display: inline-block;
    padding: 6px 0;
    margin-bottom: 20px;  /* Added bottom margin */
}

div.result span {
    display: inline-block;
    width: 50%;
    padding: 2px;
    box-sizing: border-box;
}

span.left {
    font-weight: bold;
}

h4 {
    margin: 30px 0 20px 0;  /* Added bottom margin */
    font-size: 10px;
}

@media only screen and (max-width: 1000px) {
    div.lookup {
        width: 100%;
    }
    div.results {
        width: 100%;
    }
}

.col-centered {
    float: none;
    margin: 0 auto;
}

form {
    padding: 0;
    margin: 0;
}

.imglinks img {
    filter: grayscale(1) contrast(200%);
    -webkit-transition: filter 0.5s, padding 0.2s;
    transition: filter 0.5s, padding 0.2s;
    -webkit-box-shadow: 3px -1px 25px -7px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 3px -1px 25px -7px rgba(0, 0, 0, 0.75);
    box-shadow: 3px -1px 25px -7px rgba(0, 0, 0, 0.75);
    border: 1px solid white;
    padding: 5px;
    background: rgb(0, 0, 0);
    margin-bottom: 15px;  /* Added bottom margin */
}

.imglinks img:hover {
    filter: grayscale(0.5);
    padding: 0;
}

.shadow {
    -webkit-box-shadow: 3px -1px 25px -7px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 3px -1px 25px -7px rgba(0, 0, 0, 0.75);
    box-shadow: 3px -1px 25px -7px rgba(0, 0, 0, 0.75);
}

.sidebar {
    display: none;
}

.news {
    overflow-y: scroll;
}

.sidebar small {
    color: #b5b5b5;
    font-weight: bold;
    margin-left: 20px;
}

.sidebar h1 {
    font-size: 140%;
}

.sidebar h1, .sidebar p, .sidebar small {
    font-family: monospace !important;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75), 0px 0px 5px rgba(0, 0, 0, 0.75);
    margin-bottom: 15px;  /* Added bottom margin */
}

@media only screen and (min-width: 1300px) and (min-height: 600px) {
    .sidebar {
        position: fixed !important;
        right: 0;
        display: inline;
        background: rgba(240, 240, 240, 0.1);
        margin: 10%;
        margin-right: 20px;
        height: -webkit-calc(60% - 80px);
        height: -moz-calc(60% - 80px);
        height: calc(60% - 80px);
        bottom: 100px;
        width: 300px;
        overflow-x: hidden;
    }
}

.seppukubg {
    height: 100%;
    background: linear-gradient(
            rgba(30, 30, 30, 0.5),
            rgba(10, 10, 10, 0.6),
            rgba(10, 10, 10, 1)
    ), rgb(10, 10, 10);
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.seppukubg nav {
    background: transparent;
    border: 1px solid transparent;
}

.seppukucontainer {
    background-color: rgb(20, 10, 10) !important;
}

.cw {
    height: 100%;
    min-height: 100%;
}

#p {
    position: fixed;
    z-index: 0;
    width: 100%;
    height: 100%;
}

ascii {
    display: block;
    font-family: monospace;
    white-space: pre;
    margin: 1em 0;
    padding-left: 60px;
    margin-bottom: 15px;  /* Added bottom margin */
}

@media screen and (max-width:1080px) {
    ascii {
        display: block;
        font-family: monospace;
        white-space: pre;
        margin: 1em 0;
        font-size: 50%;
    }
}

.sub {
    font-size: 80%;
    margin-bottom: 15px;  /* Added bottom margin */
}

.link:before {
    content: "[ ";
}

.link:after {
    content: " ]";
}

.hanginggirl {
    margin-top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden !important;
    max-height: 400px;
    filter: grayscale(1) contrast(200%);
    margin-bottom: 15px;  /* Added bottom margin */
}

.spoiler {
    background-color: white;
    color: white;
}

.spoiler:hover {
    background-color: black;
}

p, span {
    color: white;
    font-family: monospace;
    margin-bottom: 10px;  /* Added bottom margin */
}

.nodrag {
    user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.link, .link:visited {
    color: white;
    text-transform: uppercase;
    font-family: monospace;
    white-space: pre;
    margin-left: 15px;  /* Added left margin */
    margin-right: 15px;  /* Added right margin */
    outline: none;
}

.link:hover {
    color: #f4ab21;
    text-decoration: none;
    text-underline: none;
}

.nomar {
    margin: 0px !important;
}

p {
    letter-spacing: -1px; 
}

h1, h2, h3, h4 {
    color: rgb(240, 240, 240);
    margin-bottom: 10px;  /* Added bottom margin */
}

.ct {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -150px;
    margin-left: -150px;
    z-index: 10;
    -webkit-transition: transform 0.3s;
    transition: transform 0.3s;
    transform: scale(0.8);
}

img.ct:hover {
    transform: scale(1);
    cursor: pointer;
}

.nojs {
    font-family: monospace;
    color: #ffbb80;
}

.white {
    color: white;
}

.mid {
    text-align: center;
}

.tt {
    color: whitesmoke;
    font-family: monospace;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -75px;
    margin-left: 20px;
    font-size: 24px;
    letter-spacing: -12px;
    z-index: 10;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-shadow: 0 0 5px #FFF, 0 0 10px #FFF;
}

.message .vaporwave {
    color: rgb(28, 179, 169) !important;
    text-shadow: 1px 1px 0 rgba(237, 50, 255, 1);
    text-transform: full-width;
    letter-spacing: 7px;
}

#topic {
    color: #000;
    font-weight: bold;
}

.split {
    border-top: 1px solid #c8c8c8;
    width: 100%;
}

#mainpage .navbar {
    z-index: 20;
    margin-bottom: 0;
}

.vaporwave h1 {
    color: rgba(23, 255, 252, 1);
    text-shadow: 3px 3px 0 rgba(237, 50, 255, 1);
    text-transform: full-width;
}

.vaporwave p, span.vaporwave, a.vaporwave {
    color: rgba(23, 255, 252, 1) !important;
    text-shadow: 2px 2px 0 rgba(237, 50, 255, 1);
    letter-spacing: 1px;
}

.tt:hover {
    transform: scale(1.5);
}
