body {
    background-color: #c1c0bc;
    color: #ffffff;
    font-family: monospace;
    font-size: 17px;
    color: #333333;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    padding-top: 10px;
    overflow: hidden;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currentlysupported by Chrome, Edge, Opera and Firefox */
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;

    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currentlysupported by Chrome, Edge, Opera and Firefox */
}

a {
    color: white;
}

h1, h2 {
    color: white;
    margin: 10px;
    font-size: 17px;
}

h1 {
    font-size: 20px;
}

#buttons-container {
    position: relative;
    width: 462px;
    height: 294px;
    background-image: url('buttons.png');
}

.inpt {
    opacity: 0;
    position: absolute;
    width: 50px;
    height: 50px;
}

#button-select {
    top: 215px;
    left: 140px;
}

#button-start {
    top: 215px;
    left: 240px;
}

#button-a {
    top: 55px;
    left: 380px;
}

#button-b {
    top: 100px;
    left: 310px;
}

#button-up {
    top: 30px;
    left: 65px;
}

#button-down {
    top: 125px;
    left: 65px;
}

#button-left {
    top: 75px;
    left: 15px;
}

#button-right {
    top: 75px;
    left: 115px;
}

canvas {
    image-rendering: pixelated;
    background-color: #ffffff;
    clear: both;
}

#container {
    display: flex;
    width: 66%;
    flex-direction: column;
    align-items: center;
    align-content: center;
}

#gameboy-container {
    position: relative;
    display: inline-block;
    background-image: url("lcd_background.png");
    width: 481px;
    height: 393px;
}

#start-message {
    position: absolute;
    top: 45%;
    left: 0%;
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}

#lcd-canvas {
    background-color: #acb56b;
    width: 320px;
    height: 288px;
    margin: 40px 70px 40px 70px;
    border: 5px inset #6d7246;
}

#developer-options {
    display: block;
    position: absolute;
    top: 0;
    right: 0%;
    width: 33%;
    height: 100%;
    background-color: #333333;
}

#developer-button {
    position: fixed;
    top: 0;
    right: 0;
    border: 0;
    background-color: #333333;
    color: white;
    padding: 9px;
}

#developer-options input[type="button"],
#developer-options button {
    background-color: #333333;
    color: white;
    padding: 12px 30px;
    margin: 10px;
}

table {
    margin: 10px;
    color: white;
}
td {
    padding: 5px;
}
