
body {
  margin: 0px;
  /* background-image: url('https://images.unsplash.com/photo-1534796636912-3b95b3ab5986?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxleHBsb3JlLWZlZWR8MXx8fGVufDB8fHx8fA%3D%3D&w=1000&q=80'); */
  font-family: "Teko", sans-serif;
}

.link-container a:hover{
  transition: 0.5s;
  color: lightskyblue;
}

.header {
  display: flex;
  z-index: 99;
  position: absolute;
  width: 100vw;
  max-width: 100%;
  font-size: 24px;

  .logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 6px;
  }

  .link-container {
    display: flex;
    width: 100%;
    margin: 16px 16px;
    gap: 32px;

    :first-child {
      margin-right: auto;
    }
  }
}

.bodyDesing{
  background-color: white;
}

a {
  text-decoration: none;
  color: black;
}

.title {
  text-align: center;
  font-weight: 700;
  line-height: 0.78em;
  width: 100%;
  margin: auto;
  height: fit-content;
  text-transform: uppercase;

  .pretitle {
    font-size: 36px;
    font-family: "Lobster", cursive;
    line-height: 2.5em;
    text-transform: none;
  }

  .subtitle {
    font-size: 16px;
    font-family: "Source Code Pro", monospace;
    text-transform: none;
    font-weight: 200;
    line-height: 2em;
    max-width: 850px;
    margin: auto;
  }

  .maintitle {
    display: flex;
    flex-wrap: nowrap;
    width: fit-content;
    margin: auto;
    line-height: 1;
    max-height: 190px;

    .inlineLogo {
      transform: translateY(-12%);
      margin-right: 4px;
    }
  }
}

.desingedBy {
  font-size: 10px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  font-family: "Source Code Pro", monospace;
  z-index: 99;

  a {
    text-decoration: none;
    color: black;
  }
}

.cutout-overlay {
  width: 100vw;
  height: 100vh;
  font-size: 200px;
  color: balck;
  background-color: white;
  mix-blend-mode: lighten;
  position: relative;
  display: flex;
  overflow: hidden;

  .cutout {
    position: absolute;

    &.tl {
      top: 20%;
      left: 0%;
    }

    &.rm {
      top: 5%;
      transform: translateY(-50%);
      right: 10%;
    }

    &.cl {
      bottom: 0;
      transform: translate(-40%, 40%);
      left: 0;
      width: calc((100vw / 100vh) * 20);
    }

    &.cr {
      bottom: 0;
      transform: translate(40%, 40%);
      right: 0;
    }
  }
}

.image-overlay {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  pointer-events: none;

  img {
    position: absolute;

    &.astronaut {
      right: 0;
      width: 50vh;
      bottom: 0vh;
    }

    &.ufo {
      left: 0;
      width: 40vh;
      transform: rotate(-20deg);
    }

    &.planet1 {
      bottom: 3%;
      left: 20%;
      max-width: 180px;
    }

    &.planet2 {
      top: 10%;
      right: 20%;
      width: 30vh;
      max-width: 250px;
    }

    &.rocket {
      left: 0%;
      transform: translate(0, 0) rotate(20deg);
      width: 30vh;
      bottom: 20%;
      max-width: 250px;
    }
  }
}

canvas.space {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}