* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --mainColor: #0069f4;
  --secondColor: #1b385e;
  --accentColor: #ffa032;
  --tagColor: #f84081;
  --btnColor: #44c0ff;
  --greyColor: #465357;
}
html,
body {
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
}

.webgl {
  position: fixed;
  top: 0;
  left: 0;
  outline: none;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 10;
  background: #fff;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loader img {
  width: 5rem;
  animation: loading 8s forwards linear;
}

@keyframes loading {
  0% {
    opacity: 10%;
  }
  25% {
    opacity: 100%;
  }
  50% {
    opacity: 10%;
  }
  100% {
    opacity: 100%;
  }
}
.loader p {
  font-size: 14px;
  color: var(--greyColor);
  opacity: 50%;
  margin-top: 12px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  align-items: center;
  width: 100vw;
  pointer-events: visible;
}
header .logo {
  width: 8rem;
}

a {
  text-decoration: none;
  background: var(--btnColor);
  padding: 10px 16px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: none;
  outline: 0;
  cursor: pointer;
  transition: 0.5s all;
}
a:hover {
  background: #12affa;
}
#video {
  display: none;
}

main {
  position: fixed;

  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 80%;
}

section h1 {
  color: var(--secondColor);
  font-size: 32px;
  line-height: 38px;
  margin-top: 15px;
  position: relative;
}

section h1 em {
  color: var(--btnColor);
  font-style: normal;
}
section p {
  color: var(--greyColor);
  font-size: 16px;
  line-height: 22px;
  width: 25%;
  margin-top: 30px;
}
section a {
  margin-top: 24px;
  pointer-events: visible;
  cursor: pointer;
}
section .module {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section .module p {
  font-size: 14px;
  color: var(--greyColor);
  opacity: 50%;
  width: initial;
  margin-top: 0;
  margin-left: 8px;
}

section img {
  width: 8rem;
  position: relative;
  opacity: 100%;
}
section .tag {
  content: 'Nouveau';
  display: block;
  background: var(--tagColor);
  max-width: 64px;
  padding: 0px 4px;
  color: #fff;
  font-size: 12px;
  margin-bottom: 12px;
  text-align: center;
}


/*# sourceMappingURL=main.css.map*/