/* css/reset.css */
*, *::before, *::after {
    box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
    margin: 0;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden; /* Prevent scrolling, we are simulating a full screen monitor */
    background-color: #050505; /* Very dark room */
}

ul[role="list"], ol[role="list"] {
    list-style: none;
    padding: 0;
    margin: 0;
}

button, input, select, textarea {
    font: inherit;
}

button {
    background: transparent;
    border: none;
    cursor: pointer;
}
