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;
}
/* HTML5 display-role reset for older browsers */
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;
}

body{
    background-color:black;
    font-family: "Public Sans", sans-serif;
    user-select:none;
    transition:.3s;
    overflow:hidden;
}

header{
    color:rgb(119, 119, 119);
    position:absolute;
    width:100%;
    display:flex;
    justify-content:center;
}

header p{
    margin:30px;
    font-size:20px;
    transition:.3s;
    cursor:pointer;
}

header p:hover{
    color:white;
}

#typeMain{
    color:white;
    font-weight:300;
    text-align:center;
    line-height:65px;
}

#rightWrong {
    color:white;
    font-weight:bold;
    text-align:center;
    margin-top:50px;
}

#main{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    font-size:50px;
    width:85%;
    margin:auto;
}

.white{
    color:white;
}

#thisSpan{
    color:rgb(90, 90, 90);
    transition:.5s;
}