/* CSS RESET */
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: 5px;
	padding: 2px;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: top;
    text-align: center;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body, input, textarea {
	line-height: 1;
    background-color: rgb(0, 0, 0);
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}

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;
}

form {
    display: inline-flex;
    flex-direction: column;
    padding: 10px;
    margin-top: 100px;
    border: 8px double rgb(53, 53, 53);
    background-color: white;

    box-shadow:
    0 0 5px rgb(0, 0, 0),
    0 0 7px rgb(179, 179, 179),
    0 0 10px rgb(255, 255, 255);
}

label {
    font-size: 24px;
    color: white;
    -webkit-text-stroke: 5px rgb(49, 49, 49);
    paint-order: stroke fill;
}

input, textarea {
    border: 2px solid rgb(14, 58, 14);
    background-color: rgb(255, 255, 255);

    box-shadow:
    0 0 5px rgb(0, 0, 0),
    0 0 7px rgb(179, 179, 179),
    0 0 10px rgb(255, 255, 255);
}

input::placeholder, textarea::placeholder, .button, input, textarea, h1 {
    color: white;
    -webkit-text-stroke: 2.5px rgb(42, 42, 42);
    paint-order: stroke fill;
}

h1 {
    font-size: 36px;
    -webkit-text-stroke: 5px rgb(63, 63, 63);

    /*GLOW*/
	text-shadow:
    0 0 5px rgb(0, 0, 0),
    0 0 30px rgb(255, 255, 255),
    0 0 50px rgb(255, 255, 255);
}

label, .button {
    text-shadow:
    0 0 5px rgb(0, 0, 0),
    0 0 7px rgb(179, 179, 179),
    0 0 10px rgb(255, 255, 255);
}

.button {
    padding: 4px;
    border-radius: 7px;
    width: 100px;
    height: 40px;
    font-size: 25px;
    -webkit-text-stroke: 4px rgb(38, 38, 38);

    box-shadow:
    0 0 5px rgb(0, 0, 0),
    0 0 7px rgb(179, 179, 179),
    0 0 10px rgb(255, 255, 255);
}

input::placeholder, textarea::placeholder {
    opacity: 90%;
}

.emoji {
    margin-top: 100px;
	width: 300px;
}