html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

canvas {
    position: fixed;
    background-color: rgb(30, 30, 30);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#status {
    position: fixed;
    max-width: 600px;
    text-wrap: nowrap;
    text-align: center;
    transform: translate(-50%, -50%);
    top: 170px;
    left: 50%;
    color: white;
    font-family: "main";
    font-size: 40px;
    z-index: 2;
    transition: opacity 0.4s;
}

#roll {
    position: fixed;
    width: 250px;
    height: 75px;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, -50%);
    border: none;
    border-radius: 15px;
    background-color: rgb(66, 78, 131);
    box-shadow:
    0 8px 0 rgb(48, 57, 96);
    text-shadow:
    0 5px 2px rgb(32, 38, 63),
    0 0 5px black;
    color: white;
    font-family: "main";
    font-size: 48px;
    z-index: 2;
}

#roll:hover {
    background-color: rgb(66, 75, 122);
    box-shadow:
    0 8px 0 rgb(46, 53, 90);
}

#roll:active {
    background-color: rgb(72, 85, 143);
    box-shadow:
    0 8px 0 rgb(55, 65, 109);
}

#title {
    display: block;
    position: fixed;
    width: 400px;
    left: 50%;
    transform: translate(-50%);
    z-index: 1;
}

#six {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
}

@font-face {
    font-family: "main";
    src: url(main.ttf);
}