@font-face {
    font-family: MinecraftRegular;
    src: url(fonts/MinecraftRegular-Bmg3.otf);
}

@font-face {
    font-family: MinecraftBold;
    src: url(fonts/MinecraftBold-nMK1.otf);
}

@font-face {
    font-family: MinecraftItalic;
    src: url(fonts/MinecraftItalic-R8Mo.otf);
}


body {
    font-family: MinecraftRegular;
    /*font-size: 50px;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: red;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    margin: 0px;
}

p {
    font-family: MinecraftRegular;
}

b, strong, h1, h2, h3, h4, h5, h6 {
    font-family: MinecraftBold;
}

i, em {
    font-family: MinecraftItalic;
}

.sign {
    aspect-ratio: 2;
    width: 500px;
    height: 250px;
    background: url("./woods/planks_oak.png");
    background-size: 66.6666% 133%;
    image-rendering: pixelated;
    font-size: 50px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin: 20px;
}

.ql-editor {
    text-align: center;
    line-height: normal;
    padding: 0px;
    text-wrap-mode: nowrap;
}

.buttons{
    display: flex;
}

button, input[type="color"] {
    text-align: center;
    font-size: 25px;
    font-family: MinecraftRegular;
    padding: 10px;
    margin: 5px;
    background-color: #fff;
    border: 2px solid black;
    border-radius: 5px;
    width: 2em;
    height: 2em;
}

#command {
    width: 800px;
    border: 2px solid black;
    border-radius: 5px;
    padding: 5px;
    margin: 20px;
    line-break: anywhere;
    width: 80%;
}

.container {
    display: grid;
    height: 100%;
    align-items: center;
    justify-content: center;
    grid-template-columns: repeat(2, 50vw);
}

.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}