/* src/styles/reset.css */
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;
  font-family: "JetBrains Mono", sans-serif;
  color: #ffffff;
}
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;
}

/* src/styles/main.css */
button,
input {
  font-family: "JetBrains Mono", sans-serif;
  color: #ffffff;
}
main {
  height: 100vh;
  width: 100vw;
  position: relative;
}
button,
input[type=submit],
input[type=reset] {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}
#pixi-sorting {
  height: 100%;
  width: 100%;
}

/* src/styles/menu.css */
.menu {
  position: absolute;
  top: 30px;
  left: 40px;
  right: 40px;
  display: flex;
  justify-content: space-between;
}
.menu__column {
  display: flex;
  flex-direction: column;
}
.menu__row {
  margin-top: 10px;
}
.menu__row:first-child {
  margin-bottom: 10px;
}
.menu__button {
}
.menu__header {
  font-size: 20px;
  cursor: default;
  margin-bottom: 5px;
  color: yellow;
}
.menu__button:hover {
  transform: scale(1.05);
  transition: 0.2s;
}
.menu__button-selected {
}
#visualizations {
  text-align: right;
}
