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;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  outline: none;
  -webkit-touch-callout: none;
}

* {
  margin: 0;
  padding: 0;
}

:focus {
  outline: none;
}

::-moz-focus-inner {
  border: 0;
}

// ::-webkit-scrollbar {
//   display: none;
//   opacity: 0;
//   visibility: hidden;
// }

// ::-webkit-scrollbar-thumb {
//   background: $color-iron;
// }

a {
  color: inherit;
  outline: none;
  pointer-events: auto;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  border-radius: none;
  color: inherit;
  font: inherit;
  outline: none;
  pointer-events: auto;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

input,
textarea {
  appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  pointer-events: auto;
}

html {
  font-size: 16px;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
}

body {
  background-color: #010101;
  color: #ffffff;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

html,
body {
  width: 100%;
  height: 100%;
}

a {
  color: #ffffff;
  width: fit-content;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

a::before,
a::after {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #ffffff;
  top: 100%;
  left: 0;
  pointer-events: none;
}

a::before {
  content: "";
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}

a:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

#intro {
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
  height: 100vh;
  position: relative;
  z-index: -1;
}

.logo {
  max-width: 65%;
  position: fixed;
  z-index: 100000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}

#nav {
  position: fixed;
  width: 100%;
  font-size: 20px;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 50px;
}

#nav ul li:not(:last-child) {
  margin-bottom: 10px;
}

#nav ul {
  list-style: none;
}

@media (max-width: 575.98px) {
  #nav {
    font-size: 16px;
    padding: 30px;
  }
}
