/* im shit at css*/
@font-face {
    font-family: "Block Zone";
    src: url("BlockZone.ttf") format("truetype");
}

html {
    height: 100%;
    background: #000;
    overflow: hidden;
}

body {
    margin: 0;
    font-family: "Block Zone", sans-serif;
    color: #aaa;
}

#container {
    position: absolute;
    inset: 0;
    z-index: -1;
}

pre {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    font-size: 12px;
    color: #46b5e0;
    z-index: 10;
}

#main {
    position: absolute;
    top: 72%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.title {
    display: block;
    font-size: 35px;
    margin-top: 10px;
}

#main p {
    font-size: 16px;
    margin-top: 5px;
}

.n {
    color: #0ab900;
}

a {
    color: #aaa;
    font-size: 20px;
    text-decoration: none;
}

#main a {
    display: block;
    margin-top: 5px;
}

a:hover {
    color: #fff;
}

footer {
    position: fixed;
    bottom: 15px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    opacity: 0.6;
}