:root {
  --color-dark: #0a0620;
  --color-primary: #ffa409;
  --color-secondary: #332d54;
}

html {
  scroll-behavior: smooth;
}

.color-primary {
  color: var(--color-primary);
}

body {
  background: var(--color-secondary);
  margin: 0;
  font-family: "Kanit", sans-serif;
  color: #ffffff;
}

main {
  position: absolute;
  top: 0;
  z-index: 0;
}

h1 {
  font-size: 72px;
  line-height: 74px;
  text-transform: uppercase;
}

h2 {
  font-size: 54px;
  line-height: 56px;
}

p {
  font-size: 16px;
}

a {
  text-decoration: none;
  color: var(--color-primary);
}

/***********************
      HEADER
***********************/

header {
  position: absolute;
  top: 0;
  right: 10px;
  width: 100%;
  padding: 30px 0;
  z-index: 9999;
}

header .logo {
  float: left;
}

header .logo img {
  max-width: 200px;
  transition: 0.4 all;
}

header .nav {
  list-style: none;
  float: right;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

header .nav li {
  display: inline-block;
  font-size: 16px;
}

header .nav li a {
  position: relative;
  transition: all 0.3s;
  padding: 16px 16px 12px 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
}

header .nav li a:hover {
  text-shadow: 0px 0px 20px #ffffff;
}

#nav-icon {
  display: none;
  width: 40px;
  height: 45px;
  position: absolute;
  right: 10px;
  top: 25px;
  margin: 0 auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 2;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--color-white);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0;
}

#nav-icon span:nth-child(2) {
  top: 12px;
}

#nav-icon span:nth-child(3) {
  top: 24px;
}

#nav-icon.open span:nth-child(1) {
  top: 18px;
  transform: rotate(135deg);
}

#nav-icon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon.open span:nth-child(3) {
  top: 18px;
  transform: rotate(-135deg);
}

.nav-logo {
  display: none !important;
}

.linesvg {
  position: absolute;
}

.st0 {
  fill: none;
  stroke: #625992;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 3px;
}

#motionSVG {
  width: 200px;
  height: 200px;
  position: absolute;
  z-index: 999999;
}

main {
  position: absolute;
}

section {
  left: 0;
  width: 100vw;
  height: 100vh;
  max-height: 1000px;
  z-index: 0;
}

.hero {
  background: linear-gradient(
    0deg,
    rgba(12, 7, 43, 0) 0%,
    rgba(12, 7, 43, 1) 100%
  );
}

.content {
  padding: 5%;
}

.feature-item {
  padding: 10px 20px;
  background: rgba(9, 0, 17, 0.2);
  box-shadow: 0px 10px 15px rgba(51, 45, 85, 0.2),
    inset 0px 2px 0px rgba(214, 165, 245, 0.25);
  backdrop-filter: blur(2.5px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 20px;
}

.icons-large img {
  width: 100px;
  height: 100px;
}

.icons p {
  font-size: 14px;
}

.icons img {
  width: 40px;
  min-height: 40px;
  margin-right: 20px;
}

.second {
  background: rgb(12, 7, 43);
  background: linear-gradient(
    0deg,
    rgba(12, 7, 43, 1) 0%,
    rgba(12, 7, 43, 0) 100%
  );
}

.second img {
  width: 100%;
}

.third {
  background: linear-gradient(
    0deg,
    rgba(12, 7, 43, 0) 0%,
    rgba(12, 7, 43, 1) 100%
  );
}

.forth {
  display: flex;
  flex-direction: column;
  background-image: url("/images/footer.png"),
    linear-gradient(0deg, rgba(12, 7, 43, 1) 0%, rgba(12, 7, 43, 0) 100%);
  background-size: cover;
  justify-content: space-between;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 5vh;
}

.footer a {
  color: #ffffff;
  transition: 0.3s all;
}

.footer a:hover {
  color: var(--color-primary);
  text-shadow: 0px 0px 10px #ffee00;
}

.footer-col-1 img {
  display: block;
  cursor: pointer;
}

.footer-col-1 img:hover {
  opacity: 0.8;
}

#astronaut {
  width: 200px;
}
