@import url("./fonts.css");
@import url("./responsive.css");

body {
    font-family: "Minecraft";
    color: white;
}

/* background image: block to display */
/* background-color: tint (rgba) */
.background-stone {
    background-image: url("./blocks/stone.png");
    image-rendering: pixelated;
    background-size: 40px;
}

.background-tint-black7 {
    background-color: rgba(0, 0, 0, 0.7);
    background-blend-mode: multiply;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

/* TODO: Replace with image border */
.panel-light {
    color: #3f3f3f;
    background-color: #c6c6c6;
    
    border: 5px solid;
    border-bottom-color: #555555;
    border-right-color: #555555;
    border-top-color: white;
    border-left-color: white;

    outline: 2px solid black;

    border-radius: 10px;
    padding: 5px;
}

a {
    color: #00a8a8;
}