@charset "UTF-8";

:root {
  --font: sans-serif;
  --color: default;
  --background: default;
  --ff1: sans-serif;
  --fs1: calc(5.7vw);
  --fs2: calc(3.7vw);
  --fs3: calc(2.7vw);
  --wht: #FFF;
  --blk: #000;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
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;
  outline: 0;
  font-size: 100%;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  vertical-align: baseline;
  text-size-adjust: none;
}
html,
body {
  min-width: 100%;
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: normal;
  font-family: sans-serif;
  font-family: var(--font);
  color: transparent;
  color: var(--color);
  background: transparent;
  background: var(--background);
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
img,
picture,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  max-width: 100%;
  display: block;
}
img,
svg,
video,
canvas {
  height: auto;
}
a {
  text-decoration: none;
  color: transparent;
  color: var(--color);
  background: transparent;
  background: var(--background);
}
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;
}
input,
textarea {
  -webkit-appearance: none;
  resize: none;
  border-radius: 0;
  border: 0;
  outline: 0;
  font-family: sans-serif;
  font-family: var(--font);
}
[type='checkbox'],
[type='radio'] {
  box-sizing: border-box;
  padding: 0;
}

html {
  background: var(--wht);
}
.body {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  grid-template-rows: repeat(14, 1fr);
  grid-area: 1 / 1 / 15 / 15;
  height: 100vh;
  border: var(--wht) 1px solid;
  border-radius: .4rem;
  cursor: default;
  color: var(--wht);
  background: var(--blk);
}
.header {
  display: flex;
  grid-area: 1 / 1 / 1 / 15;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  font-size: var(--fs1);
}
.main {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  grid-area: 1 / 1 / 15 / 15;
  align-items: center;
  justify-items: center;
  font-size: var(--fs2);
}
.mainTitle {
  display: flex;
  grid-area: 1 / 1 / 13 / 13;
}
.footer {
  display: flex;
  grid-area: 14 / 1 / 15 / 15;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  font-size: var(--fs3);
}
::selection {
  color: var(--blk);
  background: var(--wht);
}
