@font-face {
    font-family: 'Minecraft';
    src: url("Fonts/Minecraft.ttf") format('truetype');
}

body{
    overflow: hidden;
}

* {
    font-family: Minecraft;
    padding: 0;
    margin: 0;
    font-size: 16px;
    outline: none;
    border: none;
    border-radius: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    color: #222;
}

.web-direct {
    position: fixed;
    height: 100px;
    width: 100px;
    bottom: 50px;
}

.web-direct[data-type="inventory"] {
    background-image: url("../Images/Inventory.png");
}

.web-direct[data-type="shop"] {
    height: 200px;
    background-image: url("../Images/Shop.png");
}

.web-direct[data-type="homepage"] {
    background-image: url("../Images/GoldBlock.png");
}

.background {
    filter: blur(1px);
    background-image: url("../Images/Background.jpg");
    background-size: cover;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    transform-origin: center;
    transform: scale(1.01);
}

#content {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

#logout{
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    border-radius: 0 0 0 10px;
    padding: 10px 30px;
    cursor: pointer;
    z-index: 3;
}

.message {
    position: absolute;
    top: 200px;
    height: 50px;
    border: 2px solid #000;
    background-color: #000;
    right: -350px;
    line-height: 54px;
    font-size: 20px;
    transition: right 1s ease;
    color: #fff;
    padding: 10px 20px;
}

.message.good {
    border-color: green;
    background-color: darkgreen;
}

.message.bad {
    border-color: red;
    background-color: darkred;
}


