@font-face {
    font-family: customfont;
    src: url("assets/MinecraftRegular-Bmg3.otf") format("opentype");
}

body {
    font-family: customfont;
    text-align: center;
    color: white;
}

#placeholder_prompt {
    width: 100%;
    height: 30px;
}

#lang_prompt {
    font-family: Arial;
    width: 100%;
    height: 50px;
    background: #008cff;
    position: fixed;
    margin: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center; 
    justify-content: center;
}

#lang_prompt a {
    color: white;
    background: #005daa;
    padding: 4px;
    border-radius: 5px;
}

h2 {
    font-size: 32px;
}

.rainbow {
    text-align: center;
    text-decoration: underline;
}
.rainbow_text_animated {
    background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rainbow_animation 12s ease-in-out infinite;
    background-size: 400% 100%;
}

@keyframes rainbow_animation {
    0%, 100% {
        background-position: 0 0;
    }

    50% {
        background-position: 100% 0;
    }
}

#bgimg {
    display: block;
    height: 100%;
    width: 100%;
    background: url("assets/bg.jpeg");
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -webkit-filter: blur(5px);
    filter: blur(5px);
    background-position: top center;
    top: 0;
    position: fixed;
    transform: scale(1.1);
    z-index: -100;
}

.box {
    margin: 0 auto;
    border-radius: 10px;
    width: 80%;
    padding: 15px;
    border: medium solid white;
    border-radius: 0px;
}

img {
    display: inline-block;
    max-width: 100%;
}

textarea, form input[type="text"] {
    border: 0px;
    outline: none;
}

#links { display: block; }

ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

ul li::before {
    content: '> ';
}

ul li::after {
    content: ' <';
}
a {
    text-decoration: none;
    color: cyan;
}

a:hover {
    text-decoration: underline;
}
