/* ==========================================
   Modern CSS Reset
   ========================================== */

/* Box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margins */
* {
    margin: 0;
}

/* Core body defaults */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
	background:#000;
	color:#fff;
}

/* Media defaults */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Form elements inherit fonts */
input,
button,
textarea,
select {
    font: inherit;
}

/* Prevent textarea overflow */
textarea {
    resize: vertical;
}

/* Improve text wrapping */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* Remove list styles when desired */
ul,
ol {
    list-style: none;
    padding: 0;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
}

/* Tables */
table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

/* Buttons */
button {
    background: none;
    border: none;
    cursor: pointer;
}

/* Form controls */
input,
textarea,
select {
    border-radius: 0;
}

/* Root stacking context */
#root,
#__next {
    isolation: isolate;
}

img {
	width:100vw;
	height:100vh;
	display:block;
    object-fit: contain;
}