@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700,800');

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    image-rendering: pixelated;
    background: black;
    font-family: "arcadeclassicregular";
}

#main-renderer {
    transform-origin: 0 0;
    display: block;
    position: absolute;
    top: 80px;
    left: calc(50vw - 400px);
    box-shadow: 0px 0px 5000px 10px rgba(255, 255, 255, 0.1);
    border: 4px solid white;
}

#main-container {
    width: 800px;
    margin: 700px auto 0px auto;
    font-family: 'Open Sans', sans-serif;
}

h1 {
    color: white;
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
}

h2 {
    margin: 0;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

a {
    color: aqua;
    font-size: 14px;
}

p {
    margin: 0;
}

button {
    background: white;
    color: black;
    border: 0;
    outline: 0;
    padding: 6px;
    text-transform: uppercase;
    margin-top: 4px;
    border-radius: 2px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
}

.warning {
    color: #eeeeee;
    margin-top: 6px;
    font-size: 12px;
}
