.sectionFadeIn {
  transition: 0.3s;
}
.sectionFadeIn:not(.inView) {
  opacity: 0;
  transform: translateY(30%);
}
.sectionFadeIn.inView {
  opacity: 1;
  transform: translateY(0);
}
body,
html {
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background-color: #130e1c;
}
body {
  color: #c7c7d7;
  font-family: deuterium-variable, sans-serif;
}
*,
:after,
:before {
  box-sizing: border-box;
}
