body {
    background-color: black !important;
    background-image: url("/res/bg/question.png");
    background-size: 25px;
    color: white !important;
    text-align: center;
    animation: bg infinite 2s linear;
}

a {
    color: white !important;
}

a:visited {
    color: white !important;
}

main {
    width: 500px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: ominous-fadein 5s linear;
    border: 1px #464646 solid;
    padding: 70px;
    background-color: black;
}

#matcha {
    width: 100%;
}

p {
    width: 85%;
    display: block;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 15px;
}

@keyframes ominous-fadein {
    from {opacity: 0}
    to {opacity: 100}
}

@keyframes bg {
    from {background-position: 0 0}
    to {background-position: 25px 25px}
}

@media screen and (max-width: 640px) {
    main {
        width: 99%;
        padding-left: 0;
        padding-right: 0;
    }
    
    #matcha {
        width: 90%;
    }
}