/*
 * Copyright (c) 2020 Oracle and/or its affiliates.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */
.minecraft {
    font-family: Minecraft, monospace;
    color: white;
    text-align: center;
    text-shadow: 3px 3px #4C4C4C;
}

.small-minecraft-text {
    font-size: small;
    font-family: Minecraft, monospace;
    color: white;
    text-align: center;
    text-shadow: 3px 3px #4C4C4C;
}

#user{
    display: flex;
    float: right;
    margin: 2% 2% auto auto;
}

#till {
    position: relative;
}
#till-box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
    background-image: url('img/button_center.png');
    background-repeat: repeat;
    outline: 2px solid black;
    text-shadow: 3px 3px #4C4C4C;
    text-align: center;
}
#cmd-box {
    position: absolute;
    bottom: 0;
    flex-wrap: nowrap;
    display: flex;
    width: 100%;
    background-image: url('img/button_center.png');
    background-repeat: repeat;
    outline: 2px solid black;
    padding: 5px;
}

#exec {
    max-width: 60px;
    /*float: right;*/
    margin: auto 2% auto auto;
}

.cmd-input {
    font-family: Minecraft, monospace;
    color: white;
    text-align: left;
    width: 90%;
    border-style: hidden;
    display: inline-block;
    text-shadow: 3px 3px #4C4C4C;
    background-image: url('img/button_center.png');
    background-repeat: repeat;
}

.cmd-input:focus {
    outline: none;
}

#centered {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#root {
    background-image: url("img/sprint-dirt.jpg");
    color: #fff;
    position: absolute;
    overflow-x: hidden;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#root::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
}

@font-face {
    font-family: 'Minecraft';
    src: url('fonts/mcfont.eot');
    src: url('fonts/mcfont.eot.iefix') format('embedded-opentype'),
    url('fonts/mcfont.woff') format('woff'),
    url('fonts/mcfont.ttf')  format('truetype'),
    url('fonts/mcfont-svgFontName.svg') format('svg');
}

.button {
    height: 40px;
    max-width: 400px;
    min-width: 100px;
    width: 95%;
    outline: 2px solid black;
    position: center;
    margin: 0;
    display: inline-block;
    background-image: url('img/button_center.png');
    background-repeat: repeat;
    padding: 0;
    font-family: Minecraft, monospace;
    text-align: center;
    color: white;
    text-shadow: 3px 3px #4C4C4C;
    border-bottom: 4px solid #565656;
    border-right: 2px solid #565656;
    border-left: 2px solid #AAA;
    border-top: 2px solid #AAA;
    box-sizing: border-box;
    font-size: 16px;
}

.button span {
    position: relative;
    line-height: 40px;
    bottom: 3px;
}

.button:hover {
    border-bottom: 4px solid #59639A;
    border-right: 2px solid #59639A;
    border-left: 2px solid #BDC6FF;
    border-top: 2px solid #BDC6FF;
    background-image: url('img/button_active_center.png');
    color: #FFFFA0;
}