body {
    background-color: #4e17cf;
  
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    margin: 0;
    padding: 20px;
    overflow-x: hidden;
  }
  
  * {
    font-family: "Bricolage Grotesque", sans-serif;
  }
  
  .flex {
    display: flex;
  }
  
  .flex.row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .flex.column {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  
  .canvas-cont {
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
  }
  
  #canvas3d {
    width: 100%;
    height: 100%;
  }
  
  nav {
    width: 100%;
  }
  
  p {
    margin: 0;
    font-size: 18px;
    font-weight: 200;
    color: white;
  }
  
  .bar {
    height: 100%;
    width: 0%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: black;
    z-index: -5;
  }
  
  h1 {
    font-size: 10vw;
    position: absolute;
    top: calc(100vh - 50vw);
    font-weight: 800;
    left: 20px;
    line-height: 1;
    letter-spacing: -5px;
    color: white;
  }
  
  h2 {
    font-size: 40px;
    line-height: 1;
    color: white;
  }
  
  #hero {
    height: 100vh;
  }
  
  #part1 {
    width: 100%;
    height: 150vh;
  }
  
  .part1-info,
  .part2-info {
    width: 30%;
    gap: 40px;
    padding: 1%;
  }
  
  button {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: transparent;
    font-size: 18px;
    font-weight: 200;
    width: 100%;
    border-radius: 10px;
    padding: 20px 0;
    cursor: pointer;
    color: white;
  }
  
  button:hover {
    border: 1px solid white;
  }
  
  #part2 {
    height: 150vh;
    width: 100%;
  }
  
  #part3 {
    height: 120vh;
    justify-content: flex-end !important;
    align-items: center !important;
    margin-bottom: 50px;
  }
  
  a {
    color: white;
  }
  
  .scroll-icon {
    height: 50px;
    width: 35px;
    border: 1px solid white;
    border-radius: 100px;
    padding: 5px 14px 20px 14px;
    box-sizing: border-box;
  }
  
  .scroll {
    height: 10px;
    width: 5px;
    border-radius: 10px;
    background-color: white;
  }
  
  .key {
    display: inline-block;
    letter-spacing: -2vw;
    transition: transform 0.2s;
  }
  
  @keyframes pressDown {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(10px);
    }
  }
  
  @media screen and (max-width: 1000px) {
    .canvas-cont {
      width: 200vw;
      transform: scale(0.5);
      left: auto;
      top: 25vh;
    }
  
    h1 {
      top: 20vw;
      font-size: 15vw;
    }
  
    .part1-info,
    .part2-info {
      width: 100%;
    }
  
    h2 {
      font-size: 5vw;
    }
  }