/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
    overflow: hidden;
    box-sizing: border-box;
    position:relative;
    display:block;
    float:left;
    font-family: "Montserrat", sans-serif;
}
/* 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;
}
html,body{
    background-color: black;
    width: 100vw;
    height: 100vh;
}
.nc_wrapper{
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0);
    position:fixed;
    top:0;
    left:0;
    z-index: 0;
}
.nc_supplemental_html{
    z-index: 999;
}
.ruw_code {
    position: absolute;
    font-size: 2vw;
    background-color: rgba(24, 24, 24, 0.372);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 40px;
}

.ruw_code > h1 {
    color: white;
    font-weight: 700;
}

.ruw_code > h2 {
    background-color: #ec622c;
    padding: 40px;
    letter-spacing: 10px;
    color: white;
    font-weight: 800;
    gap: 10px;
}

.ruw_code > p {
    color: grey;
}

.nc_content.nc_image {
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: absolute;
    left: 0px;
    top: 0px;
}
/* hide cursor */
.nc_content.nc_image > img {
    cursor: none;
}
/* hide cursor */
* {
    cursor: none!important;
}
.nc_video{
    width: 100vw;
    height: 100vh;
    position: absolute;
    left: 0px;
    top: 0px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.nc_video > video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}